chore: differentiate shared with me and personal spaces

This commit is contained in:
juancwu 2026-04-12 16:38:24 +00:00
commit 8747dfe495
2 changed files with 17 additions and 3 deletions

View file

@ -95,6 +95,10 @@ func SetupRoutes(a *app.App) http.Handler {
})
})
g.SubGroup("/shared-with-me", func(g *router.Group) {
g.Get("", spaceH.SpacesPage).Name("page.app.shared-with-me")
})
g.SubGroup("/settings", func(g *router.Group) {
g.Get("", settingsH.SettingsPage).Name("page.app.settings")