create consumer domain until pos list

This commit is contained in:
2026-03-16 17:56:22 +03:30
parent 3c9f6eed1d
commit 739aef67a3
67 changed files with 1638 additions and 1 deletions
+4
View File
@@ -1,4 +1,6 @@
import { Route } from '@angular/router';
import { CONSUMER_ACCOUNTS_ROUTES } from './modules/accounts/constants';
import { CONSUMER_BUSINESS_ACTIVITIES_ROUTES } from './modules/businessActivities/constants';
export const CONSUMER_ROUTES = {
path: 'consumer',
@@ -9,5 +11,7 @@ export const CONSUMER_ROUTES = {
loadComponent: () =>
import('./modules/dashboard/views/index.component').then((m) => m.DashboardComponent),
},
...CONSUMER_ACCOUNTS_ROUTES,
...CONSUMER_BUSINESS_ACTIVITIES_ROUTES,
],
} as Route;