Break apart the planning columns

This commit is contained in:
Eli Ribble 2026-03-22 09:54:02 +00:00
parent 0b8bea393e
commit b152cf9c36
No known key found for this signature in database
11 changed files with 821 additions and 585 deletions

View file

@ -43,6 +43,7 @@ func Router() chi.Router {
r.Method("GET", "/", authenticatedHandler(getRoot))
r.Method("GET", "/communication", authenticatedHandler(getRoot))
r.Method("GET", "/intelligence", authenticatedHandler(getRoot))
r.Method("GET", "/planning", authenticatedHandler(getRoot))
r.Method("GET", "/admin", authenticatedHandler(getAdminDash))
r.Method("GET", "/cell/{cell}", authenticatedHandler(getCellDetails))
@ -71,7 +72,6 @@ func Router() chi.Router {
r.Method("GET", "/oauth/refresh", authenticatedHandler(getOAuthRefresh))
r.Method("GET", "/operations", authenticatedHandler(getOperationsRoot))
r.Method("GET", "/parcel", authenticatedHandler(getParcel))
r.Method("GET", "/planning", authenticatedHandler(getPlanningRoot))
r.Method("GET", "/pool", authenticatedHandler(getPoolList))
r.Method("GET", "/pool/create", authenticatedHandler(getPoolCreate))
r.Method("GET", "/pool/{id}", authenticatedHandler(getPoolByID))