]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+signup/+verify-account/verify-account.module.ts
Switching to a named filters/single input on video-abuse
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / +verify-account / verify-account.module.ts
1 import { NgModule } from '@angular/core'
2 import { VerifyAccountRoutingModule } from './verify-account-routing.module'
3 import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component'
4 import { VerifyAccountAskSendEmailComponent } from './verify-account-ask-send-email/verify-account-ask-send-email.component'
5 import { SharedModule } from '@app/shared'
6 import { SignupSharedModule } from '@app/+signup/shared/signup-shared.module'
7
8 @NgModule({
9 imports: [
10 VerifyAccountRoutingModule,
11 SharedModule,
12 SignupSharedModule
13 ],
14
15 declarations: [
16 VerifyAccountEmailComponent,
17 VerifyAccountAskSendEmailComponent
18 ],
19
20 exports: [],
21
22 providers: []
23 })
24 export class VerifyAccountModule {
25 }