UX Overhaul Part 1 (#3047)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
5934d516f3
commit
ff79710ac6
324 changed files with 11589 additions and 4598 deletions
|
|
@ -1,16 +0,0 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import { AdminGuard } from '../_guards/admin.guard';
|
||||
import { DashboardComponent } from '../admin/dashboard/dashboard.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{path: '**', component: DashboardComponent, pathMatch: 'full', canActivate: [AdminGuard]},
|
||||
{
|
||||
path: '',
|
||||
runGuardsAndResolvers: 'always',
|
||||
canActivate: [AdminGuard],
|
||||
children: [
|
||||
{path: 'dashboard', component: DashboardComponent},
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
6
UI/Web/src/app/_routes/settings-routing.module.ts
Normal file
6
UI/Web/src/app/_routes/settings-routing.module.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import {SettingsComponent} from "../settings/_components/settings/settings.component";
|
||||
|
||||
export const routes: Routes = [
|
||||
{path: '', component: SettingsComponent, pathMatch: 'full'},
|
||||
];
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
import { Routes } from '@angular/router';
|
||||
import { UserPreferencesComponent } from '../user-settings/user-preferences/user-preferences.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{path: '', component: UserPreferencesComponent, pathMatch: 'full'},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue