aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+my-account/my-account.module.ts')
-rw-r--r--client/src/app/+my-account/my-account.module.ts14
1 files changed, 13 insertions, 1 deletions
diff --git a/client/src/app/+my-account/my-account.module.ts b/client/src/app/+my-account/my-account.module.ts
index 4081e4f01..f5beaa4db 100644
--- a/client/src/app/+my-account/my-account.module.ts
+++ b/client/src/app/+my-account/my-account.module.ts
@@ -1,3 +1,4 @@
1import { QRCodeModule } from 'angularx-qrcode'
1import { AutoCompleteModule } from 'primeng/autocomplete' 2import { AutoCompleteModule } from 'primeng/autocomplete'
2import { TableModule } from 'primeng/table' 3import { TableModule } from 'primeng/table'
3import { DragDropModule } from '@angular/cdk/drag-drop' 4import { DragDropModule } from '@angular/cdk/drag-drop'
@@ -23,12 +24,18 @@ import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-d
23import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences' 24import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
24import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component' 25import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
25import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' 26import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
27import {
28 MyAccountTwoFactorButtonComponent,
29 MyAccountTwoFactorComponent,
30 TwoFactorService
31} from './my-account-settings/my-account-two-factor'
26import { MyAccountComponent } from './my-account.component' 32import { MyAccountComponent } from './my-account.component'
27 33
28@NgModule({ 34@NgModule({
29 imports: [ 35 imports: [
30 MyAccountRoutingModule, 36 MyAccountRoutingModule,
31 37
38 QRCodeModule,
32 AutoCompleteModule, 39 AutoCompleteModule,
33 TableModule, 40 TableModule,
34 DragDropModule, 41 DragDropModule,
@@ -52,6 +59,9 @@ import { MyAccountComponent } from './my-account.component'
52 MyAccountChangeEmailComponent, 59 MyAccountChangeEmailComponent,
53 MyAccountApplicationsComponent, 60 MyAccountApplicationsComponent,
54 61
62 MyAccountTwoFactorButtonComponent,
63 MyAccountTwoFactorComponent,
64
55 MyAccountDangerZoneComponent, 65 MyAccountDangerZoneComponent,
56 MyAccountBlocklistComponent, 66 MyAccountBlocklistComponent,
57 MyAccountAbusesListComponent, 67 MyAccountAbusesListComponent,
@@ -64,7 +74,9 @@ import { MyAccountComponent } from './my-account.component'
64 MyAccountComponent 74 MyAccountComponent
65 ], 75 ],
66 76
67 providers: [] 77 providers: [
78 TwoFactorService
79 ]
68}) 80})
69export class MyAccountModule { 81export class MyAccountModule {
70} 82}