Dominik Säume
f6664e1d8a
All checks were successful
Quality Check / Linting (push) Successful in 21s
11 lines
604 B
TypeScript
11 lines
604 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { DashboardComponent } from '@app/views/dashboard/dashboard.component';
|
|
import { AuthService } from '@core/auth/auth.service';
|
|
|
|
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] }
|
|
];
|