mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
update folder structure based on style guide
This commit is contained in:
18
src/app/logout-page/logout-page-routing.module.ts
Normal file
18
src/app/logout-page/logout-page-routing.module.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { AuthenticatedGuard } from '../core/auth/authenticated.guard';
|
||||
import { ThemedLogoutPageComponent } from './themed-logout-page.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule.forChild([
|
||||
{
|
||||
canActivate: [AuthenticatedGuard],
|
||||
path: '',
|
||||
component: ThemedLogoutPageComponent,
|
||||
data: { title: 'logout.title' }
|
||||
}
|
||||
])
|
||||
]
|
||||
})
|
||||
export class LogoutPageRoutingModule { }
|
Reference in New Issue
Block a user