28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { AgendaImportListComponent } from './components/agenda-import-list/agenda-import-list.component';
|
|
import { AgendaListComponent } from './components/agenda-list/agenda-list.component';
|
|
import { AgendaSortComponent } from './components/agenda-sort/agenda-sort.component';
|
|
import { ListOfSpeakersComponent } from './components/list-of-speakers/list-of-speakers.component';
|
|
import { WatchSortingTreeGuard } from 'app/shared/utils/watch-sorting-tree.guard';
|
|
|
|
const routes: Routes = [
|
|
{ path: '', component: AgendaListComponent, pathMatch: 'full' },
|
|
{ path: 'import', component: AgendaImportListComponent, data: { basePerm: 'agenda.can_manage' } },
|
|
{
|
|
path: 'sort-agenda',
|
|
component: AgendaSortComponent,
|
|
canDeactivate: [WatchSortingTreeGuard],
|
|
data: { basePerm: 'agenda.can_manage' }
|
|
},
|
|
{ path: 'speakers', component: ListOfSpeakersComponent, data: { basePerm: 'agenda.can_see_list_of_speakers' } },
|
|
{ path: 'speakers/:id', component: ListOfSpeakersComponent, data: { basePerm: 'agenda.can_see_list_of_speakers' } }
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class AgendaRoutingModule {}
|