feat: add Master Admin application functionality

This commit is contained in:
Gagan7900
2026-07-24 11:55:27 +05:30
parent 10038a52cf
commit d514d09879
224 changed files with 34594 additions and 958 deletions
-19
View File
@@ -1,19 +0,0 @@
import { Routes } from '@angular/router';
import { guestGuard } from '../../core/guards/auth/guest.guard';
export const authen: Routes = [
{
path: 'login',
canActivate: [guestGuard],
loadComponent: () => import('../../authentication/login/login').then((m) => m.Login),
},
{
path: '',
children: [
{
path: '',
loadChildren: () => import('../../features/errors/error.routes').then((m) => m.errorRoutingModule),
},
],
},
];
+4
View File
@@ -13,6 +13,10 @@ export const content: Routes = [
path: 'users',
loadChildren: () => import('../../features/users/users.routes').then((m) => m.usersRoutes),
},
{
path: 'organizations',
loadChildren: () => import('../../features/organizations/organizations.routes').then((m) => m.organizationsRoutes),
},
{
path: 'tenants',
loadChildren: () => import('../../features/tenants/tenants.routes').then((m) => m.tenantsRoutes),
@@ -1,8 +1,8 @@
@if(childTitle){
<div class="block justify-between page-header md:flex">
<div>
<h3 class="!text-defaulttextcolor dark:!text-defaulttextcolor/70 dark:text-white dark:hover:text-white text-[1.125rem]! font-semibold">
{{childTitle}}</h3>
<!-- <h3 class="!text-defaulttextcolor dark:!text-defaulttextcolor/70 dark:text-white dark:hover:text-white text-[1.125rem]! font-semibold">
{{childTitle}}</h3> -->
</div>
<!-- <ol class="flex items-center whitespace-nowrap min-w-0">
@if(parentTitle){