feat: add Master Admin application functionality
This commit is contained in:
@@ -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),
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
@@ -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){
|
||||
|
||||
Reference in New Issue
Block a user