]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Fix angular build
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { QRCodeModule } from 'angularx-qrcode'
2 import { AutoCompleteModule } from 'primeng/autocomplete'
3 import { TableModule } from 'primeng/table'
4 import { DragDropModule } from '@angular/cdk/drag-drop'
5 import { NgModule } from '@angular/core'
6 import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
7 import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
8 import { SharedFormModule } from '@app/shared/shared-forms'
9 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10 import { SharedMainModule } from '@app/shared/shared-main'
11 import { SharedModerationModule } from '@app/shared/shared-moderation'
12 import { SharedShareModal } from '@app/shared/shared-share-modal'
13 import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
14 import { SharedUsersModule } from '@app/shared/shared-users'
15 import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
16 import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
17 import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
18 import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19 import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
20 import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
21 import { MyAccountRoutingModule } from './my-account-routing.module'
22 import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
23 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
24 import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
25 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
26 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
27 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
28 import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
29 import { MyAccountComponent } from './my-account.component'
30
31 @NgModule({
32 imports: [
33 MyAccountRoutingModule,
34
35 QRCodeModule,
36 AutoCompleteModule,
37 TableModule,
38 DragDropModule,
39
40 SharedMainModule,
41 SharedFormModule,
42 SharedModerationModule,
43 SharedUserInterfaceSettingsModule,
44 SharedUsersModule,
45 SharedGlobalIconModule,
46 SharedAbuseListModule,
47 SharedShareModal,
48 SharedActorImageModule,
49 SharedActorImageEditModule
50 ],
51
52 declarations: [
53 MyAccountComponent,
54 MyAccountSettingsComponent,
55 MyAccountChangePasswordComponent,
56 MyAccountProfileComponent,
57 MyAccountChangeEmailComponent,
58 MyAccountApplicationsComponent,
59
60 MyAccountTwoFactorButtonComponent,
61 MyAccountTwoFactorComponent,
62
63 MyAccountDangerZoneComponent,
64 MyAccountBlocklistComponent,
65 MyAccountAbusesListComponent,
66 MyAccountServerBlocklistComponent,
67 MyAccountNotificationsComponent,
68 MyAccountNotificationPreferencesComponent
69 ],
70
71 exports: [
72 MyAccountComponent
73 ],
74
75 providers: []
76 })
77 export class MyAccountModule {
78 }