mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-19 03:11:32 +00:00
21 lines
456 B
TypeScript
21 lines
456 B
TypeScript
![]() |
import { NgModule } from '@angular/core';
|
||
|
import { RouterModule, Routes } from '@angular/router';
|
||
|
|
||
|
import { PasswordAgePolicyComponent } from './password-age-policy.component';
|
||
|
|
||
|
const routes: Routes = [
|
||
|
{
|
||
|
path: '',
|
||
|
component: PasswordAgePolicyComponent,
|
||
|
data: {
|
||
|
animation: 'DetailPage',
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [RouterModule.forChild(routes)],
|
||
|
exports: [RouterModule],
|
||
|
})
|
||
|
export class PasswordAgePolicyRoutingModule {}
|