feat(dashboard): expose app shell routes

This commit is contained in:
2026-06-06 08:44:26 +08:00
parent 32084f9f4c
commit 485373be80
6 changed files with 139 additions and 9 deletions
+3
View File
@@ -23,6 +23,9 @@ type sourceDecl struct {
}
var criticalRoutes = []route{
{Method: "GET", Path: "/app", Controller: "dashboard#index", Source: "routes.rb:19"},
{Method: "GET", Path: "/app/*params", Controller: "dashboard#index", Source: "routes.rb:20"},
{Method: "POST", Path: "/api/v1/accounts/", Controller: "api/v1/accounts#create", Source: "routes.rb:47"},
{Method: "GET", Path: "/api/v1/accounts/:account_id", Controller: "api/v1/accounts#show", Source: "routes.rb:47"},
{Method: "PUT", Path: "/api/v1/accounts/:account_id", Controller: "api/v1/accounts#update", Source: "routes.rb:47"},