Variable: AUTH_ROUTES
const AUTH_ROUTES: RouteConfig[];
Robo-authenticated routes mounted under the configured basePath
.
Example
for (const route of AUTH_ROUTES) {
router.register(route.method, `${basePath}${route.path}`, handler)
}
const AUTH_ROUTES: RouteConfig[];
Robo-authenticated routes mounted under the configured basePath
.
for (const route of AUTH_ROUTES) {
router.register(route.method, `${basePath}${route.path}`, handler)
}