argos/dmp-frontend/src/app/ui/supportive-material-editor/supportive-material-editor....

16 lines
522 B
TypeScript
Raw Normal View History

2020-02-13 17:15:34 +01:00
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
2023-11-03 12:30:11 +01:00
import { SupportiveMaterialEditorComponent } from './supportive-material-editor.component';
2020-02-13 17:15:34 +01:00
import { AdminAuthGuard } from '@app/core/admin-auth-guard.service';
const routes: Routes = [
2023-11-03 12:30:11 +01:00
{ path: '', component: SupportiveMaterialEditorComponent, canActivate: [AdminAuthGuard] },
2020-02-13 17:15:34 +01:00
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
2023-11-03 12:30:11 +01:00
export class SupportiveMaterialEditorRoutingModule { }