]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Add Podcast RSS feeds (#5487)
[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 { MyAccountEmailPreferencesComponent } from './my-account-settings/my-account-email-preferences'
26 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
27 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
28 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
29 import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
30 import { MyAccountComponent } from './my-account.component'
31
32 @NgModule({
33 imports: [
34 MyAccountRoutingModule,
35
36 QRCodeModule,
37 AutoCompleteModule,
38 TableModule,
39 DragDropModule,
40
41 SharedMainModule,
42 SharedFormModule,
43 SharedModerationModule,
44 SharedUserInterfaceSettingsModule,
45 SharedUsersModule,
46 SharedGlobalIconModule,
47 SharedAbuseListModule,
48 SharedShareModal,
49 SharedActorImageModule,
50 SharedActorImageEditModule
51 ],
52
53 declarations: [
54 MyAccountComponent,
55 MyAccountSettingsComponent,
56 MyAccountChangePasswordComponent,
57 MyAccountProfileComponent,
58 MyAccountChangeEmailComponent,
59 MyAccountApplicationsComponent,
60
61 MyAccountTwoFactorButtonComponent,
62 MyAccountTwoFactorComponent,
63
64 MyAccountDangerZoneComponent,
65 MyAccountBlocklistComponent,
66 MyAccountAbusesListComponent,
67 MyAccountServerBlocklistComponent,
68 MyAccountNotificationsComponent,
69 MyAccountNotificationPreferencesComponent,
70
71 MyAccountEmailPreferencesComponent
72 ],
73
74 exports: [
75 MyAccountComponent
76 ],
77
78 providers: []
79 })
80 export class MyAccountModule {
81 }