ui: update ProductPerformanceProfitability page to enhance table views and tabs management

This commit is contained in:
M_Kececi
2026-07-02 21:01:55 +03:00
parent 8d0f3c302a
commit d4e853806a
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -397,7 +397,7 @@ func InitRoutes(pgDB *sql.DB, mssql *sql.DB, ml *mailer.GraphMailer) *mux.Router
) )
r.Handle( r.Handle(
"/api/language/translations/runtime", "/api/language/translations/runtime",
wrapAuthOnly(http.HandlerFunc(routes.GetRuntimeTranslationsHandler(pgDB))), http.HandlerFunc(routes.GetRuntimeTranslationsHandler(pgDB)),
).Methods("GET", "OPTIONS") ).Methods("GET", "OPTIONS")
bindV3(r, pgDB, bindV3(r, pgDB,
"/api/language/translations/{id}", "PUT", "/api/language/translations/{id}", "PUT",
+1
View File
@@ -12,6 +12,7 @@ var publicPaths = []string{
"/api/auth/refresh", "/api/auth/refresh",
"/api/password/forgot", "/api/password/forgot",
"/api/password/reset", "/api/password/reset",
"/api/language/translations/runtime",
"/api/product-images/", "/api/product-images/",
"/uploads/", "/uploads/",
} }