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
Raw Normal View History

export const ROUTE = {
SIGN_IN_PAGE: '/',
DASHBOARD_PAGE: '/dashboard',
2021-03-09 18:44:13 +00:00
USERS_PAGE: '/users',
};
export const PUBLIC_ROUTES = [ROUTE.SIGN_IN_PAGE];
export const ADMIN_ROUTES = Object.values(ROUTE).filter(
route => !PUBLIC_ROUTES.includes(route)
);