Add ArcGIS oauth refresh page

This commit is contained in:
Eli Ribble 2026-03-22 18:00:30 +00:00
parent 35fc57e8d1
commit a4a8bcdaa9
No known key found for this signature in database
4 changed files with 159 additions and 4 deletions

View file

@ -57,6 +57,7 @@ func Router() chi.Router {
r.Method("GET", "/configuration/user/add", authenticatedHandler(getRoot))
r.Method("GET", "/intelligence", authenticatedHandler(getRoot))
r.Method("GET", "/operations", authenticatedHandler(getRoot))
r.Method("GET", "/oauth/refresh/arcgis", authenticatedHandler(getRoot))
r.Method("GET", "/planning", authenticatedHandler(getRoot))
r.Method("GET", "/review", authenticatedHandler(getRoot))
r.Method("GET", "/review/pool", authenticatedHandler(getRoot))
@ -73,7 +74,6 @@ func Router() chi.Router {
r.Method("GET", "/layout-test", authenticatedHandler(getLayoutTest))
r.Method("GET", "/message", authenticatedHandler(getMessageList))
r.Method("GET", "/notification", authenticatedHandler(getNotificationList))
r.Method("GET", "/oauth/refresh", authenticatedHandler(getOAuthRefresh))
r.Method("GET", "/parcel", authenticatedHandler(getParcel))
r.Method("GET", "/pool", authenticatedHandler(getPoolList))
r.Method("GET", "/pool/create", authenticatedHandler(getPoolCreate))