2026-03-10 13:36:45 +03:30
|
|
|
import { Route } from '@angular/router';
|
2026-03-14 16:26:22 +03:30
|
|
|
import { DEVICE_BRANDS_ROUTES } from './deviceBrands/constants';
|
|
|
|
|
import { DEVICES_ROUTES } from './devices/constants';
|
2026-03-10 13:36:45 +03:30
|
|
|
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,
|
2026-03-14 16:26:22 +03:30
|
|
|
...DEVICE_BRANDS_ROUTES,
|
|
|
|
|
...DEVICES_ROUTES,
|
2026-03-10 13:36:45 +03:30
|
|
|
],
|
|
|
|
|
} as Route;
|