1 import { AutoCompleteModule } from 'primeng/autocomplete'
2 import { TableModule } from 'primeng/table'
3 import { DragDropModule } from '@angular/cdk/drag-drop'
4 import { NgModule } from '@angular/core'
5 import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
6 import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
7 import { SharedFormModule } from '@app/shared/shared-forms'
8 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9 import { SharedMainModule } from '@app/shared/shared-main'
10 import { SharedModerationModule } from '@app/shared/shared-moderation'
11 import { SharedShareModal } from '@app/shared/shared-share-modal'
12 import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
13 import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
14 import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
15 import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
16 import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
17 import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
18 import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
19 import { MyAccountRoutingModule } from './my-account-routing.module'
20 import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
21 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
22 import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
23 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
24 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
25 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
26 import { MyAccountComponent } from './my-account.component'
30 MyAccountRoutingModule,
38 SharedModerationModule,
39 SharedUserInterfaceSettingsModule,
40 SharedGlobalIconModule,
41 SharedAbuseListModule,
43 SharedActorImageModule,
44 SharedActorImageEditModule
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
51 MyAccountProfileComponent,
52 MyAccountChangeEmailComponent,
53 MyAccountApplicationsComponent,
55 MyAccountDangerZoneComponent,
56 MyAccountBlocklistComponent,
57 MyAccountAbusesListComponent,
58 MyAccountServerBlocklistComponent,
59 MyAccountNotificationsComponent,
60 MyAccountNotificationPreferencesComponent
69 export class MyAccountModule {