diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-04-10 20:29:33 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-04-10 20:29:33 +0200 |
commit | a184c71b526000f60f00649d260638723d426e6a (patch) | |
tree | 70fcb85cf5780519e59b4812167ce6f896d73afa /client/src/app/signup/signup.module.ts | |
parent | c36b4ff77ebcd6cf3a71f0a5c8fb17fa0f4a0d24 (diff) | |
download | PeerTube-a184c71b526000f60f00649d260638723d426e6a.tar.gz PeerTube-a184c71b526000f60f00649d260638723d426e6a.tar.zst PeerTube-a184c71b526000f60f00649d260638723d426e6a.zip |
Client: support signup
Diffstat (limited to 'client/src/app/signup/signup.module.ts')
-rw-r--r-- | client/src/app/signup/signup.module.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/client/src/app/signup/signup.module.ts b/client/src/app/signup/signup.module.ts new file mode 100644 index 000000000..acb7e5515 --- /dev/null +++ b/client/src/app/signup/signup.module.ts | |||
@@ -0,0 +1,24 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { SignupRoutingModule } from './signup-routing.module'; | ||
4 | import { SignupComponent } from './signup.component'; | ||
5 | import { SharedModule } from '../shared'; | ||
6 | |||
7 | @NgModule({ | ||
8 | imports: [ | ||
9 | SignupRoutingModule, | ||
10 | SharedModule | ||
11 | ], | ||
12 | |||
13 | declarations: [ | ||
14 | SignupComponent | ||
15 | ], | ||
16 | |||
17 | exports: [ | ||
18 | SignupComponent | ||
19 | ], | ||
20 | |||
21 | providers: [ | ||
22 | ] | ||
23 | }) | ||
24 | export class SignupModule { } | ||