This commit is contained in:
2026-03-10 13:36:45 +03:30
parent 45d48f79dc
commit b379787002
208 changed files with 2328 additions and 2510 deletions
+18
View File
@@ -0,0 +1,18 @@
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;