Finalize history admin tools and semantic UI navigation

This commit is contained in:
2026-02-23 16:59:09 +03:00
parent 4e8554f5f0
commit 8aa8b26184
43 changed files with 5543 additions and 270 deletions

View File

@@ -23,6 +23,8 @@ type assetComponentHandlers struct {
func RegisterAssetComponentRoutes(mux *http.ServeMux, deps AssetComponentDependencies) {
h := assetComponentHandlers{deps: deps}
mux.HandleFunc("/api/assets/", h.handleAssetAPI)
mux.HandleFunc("/api/components/search-lite", h.handleComponentSearchLite)
mux.HandleFunc("/assets/", h.handleAsset)
mux.HandleFunc("/components/", h.handleComponent)
}