19 lines
544 B
TypeScript
19 lines
544 B
TypeScript
|
|
import { Route } from '@angular/router';
|
||
|
|
import { GUILDS_ROUTES } from './guilds/constants';
|
||
|
|
import { LICENSES_ROUTES } from './licenses/constants';
|
||
|
|
import { PARTNERS_ROUTES } from './partners/constants';
|
||
|
|
import { PROVIDERS_ROUTES } from './providers/constants';
|
||
|
|
import { USERS_ROUTES } from './users/constants';
|
||
|
|
|
||
|
|
export const SUPER_ADMIN_ROUTES = {
|
||
|
|
path: 'super_admin',
|
||
|
|
component: undefined,
|
||
|
|
children: [
|
||
|
|
...USERS_ROUTES,
|
||
|
|
...GUILDS_ROUTES,
|
||
|
|
...PARTNERS_ROUTES,
|
||
|
|
...PROVIDERS_ROUTES,
|
||
|
|
...LICENSES_ROUTES,
|
||
|
|
],
|
||
|
|
} as Route;
|