Files
neo-blog/internal/router/apiv1/misc.go
Snowykami f501948f91 Refactor site configuration and color scheme management
- Replaced static config with dynamic site info context.
- Updated color scheme handling in various components to use site info.
- Removed deprecated config file and integrated site info fetching.
- Enhanced user preference page to allow color scheme selection.
- Adjusted blog and console components to reflect new site info structure.
- Improved error handling and fallback mechanisms for site info retrieval.
2025-09-26 00:25:34 +08:00

19 lines
650 B
Go

package apiv1
import (
"github.com/cloudwego/hertz/pkg/route"
v1 "github.com/snowykami/neo-blog/internal/controller/v1"
"github.com/snowykami/neo-blog/internal/middleware"
"github.com/snowykami/neo-blog/pkg/constant"
)
func registerMiscRoutes(group *route.RouterGroup) {
miscController := v1.NewMiscController()
miscGroupAdmin := group.Group("/misc").Use(middleware.UseAuth(true)).Use(middleware.UseRole(constant.RoleAdmin))
miscGroupWithoutAuth := group.Group("/misc").Use(middleware.UseAuth(false))
{
miscGroupWithoutAuth.GET("/site-info", miscController.GetSiteInfo)
miscGroupAdmin.PUT("/site-info", miscController.SetSiteInfo)
}
}