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