]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/signup/signup-routing.module.ts
Update videojs -> 6
[github/Chocobozzz/PeerTube.git] / client / src / app / signup / signup-routing.module.ts
CommitLineData
df98563e
C
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
a184c71b 3
df98563e 4import { SignupComponent } from './signup.component'
a184c71b
C
5
6const signupRoutes: Routes = [
7 {
8 path: 'signup',
9 component: SignupComponent,
10 data: {
11 meta: {
12 title: 'Signup'
13 }
14 }
15 }
df98563e 16]
a184c71b
C
17
18@NgModule({
19 imports: [ RouterModule.forChild(signupRoutes) ],
20 exports: [ RouterModule ]
21})
22export class SignupRoutingModule {}