diff options
Diffstat (limited to 'garden/src/routes.ts')
| -rw-r--r-- | garden/src/routes.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/garden/src/routes.ts b/garden/src/routes.ts index 6dc2c96..41746a5 100644 --- a/garden/src/routes.ts +++ b/garden/src/routes.ts @@ -12,5 +12,7 @@ export const routes: RouteDefinition[] = [ { path: "/council/users", component: lazy(() => import("./pages/council/users")) }, { path: "/council/users/:username", component: lazy(() => import("./pages/council/user")) }, { path: "/council/bannedips", component: lazy(() => import("./pages/council/bannedips")) }, + { path: "/council/auditlog", component: lazy(() => import("./pages/council/auditlog")) }, + { path: "/council/auditlog/:ref", component: lazy(() => import("./pages/council/auditdetail")) }, { path: "**", component: lazy(() => import("./errors/404")) }, ]; |
