]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+verify-account/verify-account.module.ts
enable email verification by admin (#1348)
[github/Chocobozzz/PeerTube.git] / client / src / app / +verify-account / verify-account.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { VerifyAccountRoutingModule } from '@app/+verify-account/verify-account-routing.module'
4 import { VerifyAccountEmailComponent } from '@app/+verify-account/verify-account-email/verify-account-email.component'
5 import {
6 VerifyAccountAskSendEmailComponent
7 } from '@app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component'
8 import { SharedModule } from '@app/shared'
9
10 @NgModule({
11 imports: [
12 VerifyAccountRoutingModule,
13 SharedModule
14 ],
15
16 declarations: [
17 VerifyAccountEmailComponent,
18 VerifyAccountAskSendEmailComponent
19 ],
20
21 exports: [
22 ],
23
24 providers: [
25 ]
26 })
27 export class VerifyAccountModule { }