update superAdmin users business

This commit is contained in:
2026-03-14 16:26:22 +03:30
parent 9bfbef6f64
commit 20be653499
126 changed files with 2891 additions and 169 deletions
@@ -0,0 +1,17 @@
import { NamedRoutes } from '@/core';
import { Routes } from '@angular/router';
export type TDevicesRouteNames = 'devices';
export const devicesRoutes: NamedRoutes<TDevicesRouteNames> = {
devices: {
path: 'devices',
loadComponent: () => import('../../views/list.component').then((m) => m.DevicesComponent),
meta: {
title: 'دستگاه‌ها',
pagePath: () => '/super_admin/devices',
},
},
};
export const DEVICES_ROUTES: Routes = Object.values(devicesRoutes);