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.ts8
1 files changed, 8 insertions, 0 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..84b057647 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'
@@ -10,6 +11,7 @@ import { SharedMainModule } from '@app/shared/shared-main'
10import { SharedModerationModule } from '@app/shared/shared-moderation' 11import { SharedModerationModule } from '@app/shared/shared-moderation'
11import { SharedShareModal } from '@app/shared/shared-share-modal' 12import { SharedShareModal } from '@app/shared/shared-share-modal'
12import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings' 13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
14import { SharedUsersModule } from '@app/shared/shared-users'
13import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module' 15import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
14import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component' 16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
15import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component' 17import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
@@ -23,12 +25,14 @@ import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-d
23import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences' 25import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
24import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component' 26import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
25import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' 27import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
28import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
26import { MyAccountComponent } from './my-account.component' 29import { MyAccountComponent } from './my-account.component'
27 30
28@NgModule({ 31@NgModule({
29 imports: [ 32 imports: [
30 MyAccountRoutingModule, 33 MyAccountRoutingModule,
31 34
35 QRCodeModule,
32 AutoCompleteModule, 36 AutoCompleteModule,
33 TableModule, 37 TableModule,
34 DragDropModule, 38 DragDropModule,
@@ -37,6 +41,7 @@ import { MyAccountComponent } from './my-account.component'
37 SharedFormModule, 41 SharedFormModule,
38 SharedModerationModule, 42 SharedModerationModule,
39 SharedUserInterfaceSettingsModule, 43 SharedUserInterfaceSettingsModule,
44 SharedUsersModule,
40 SharedGlobalIconModule, 45 SharedGlobalIconModule,
41 SharedAbuseListModule, 46 SharedAbuseListModule,
42 SharedShareModal, 47 SharedShareModal,
@@ -52,6 +57,9 @@ import { MyAccountComponent } from './my-account.component'
52 MyAccountChangeEmailComponent, 57 MyAccountChangeEmailComponent,
53 MyAccountApplicationsComponent, 58 MyAccountApplicationsComponent,
54 59
60 MyAccountTwoFactorButtonComponent,
61 MyAccountTwoFactorComponent,
62
55 MyAccountDangerZoneComponent, 63 MyAccountDangerZoneComponent,
56 MyAccountBlocklistComponent, 64 MyAccountBlocklistComponent,
57 MyAccountAbusesListComponent, 65 MyAccountAbusesListComponent,