This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/src/config/routing.ts

11 lines
257 B
TypeScript

export const ROUTE = {
SIGN_IN_PAGE: '/',
DASHBOARD_PAGE: '/dashboard',
USERS_PAGE: '/users',
};
export const PUBLIC_ROUTES = [ROUTE.SIGN_IN_PAGE];
export const ADMIN_ROUTES = Object.values(ROUTE).filter(
route => !PUBLIC_ROUTES.includes(route)
);