2025-01-09 23:33:35 +01:00
|
|
|
import { Routes } from '@angular/router';
|
|
|
|
import { DashboardComponent } from '@app/views/dashboard/dashboard.component';
|
|
|
|
import { AuthService } from '@core/auth/auth.service';
|
2024-12-18 09:35:34 +01:00
|
|
|
|
2025-01-09 23:33:35 +01:00
|
|
|
import { EmployeeDetailComponent } from './views/employee-detail/employee-detail.component';
|
|
|
|
|
|
|
|
export const routes: Routes = [
|
|
|
|
{ path: '', component: DashboardComponent, title: 'Home' },
|
|
|
|
{ path: 'employee/new', component: EmployeeDetailComponent, title: 'New Employee', canActivate: [AuthService] },
|
|
|
|
{ path: 'employee/:id', component: EmployeeDetailComponent, title: 'Edit Employee', canActivate: [AuthService] }
|
|
|
|
];
|