]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
... / ...
CommitLineData
1import { QRCodeModule } from 'angularx-qrcode'
2import { AutoCompleteModule } from 'primeng/autocomplete'
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
7import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
8import { SharedFormModule } from '@app/shared/shared-forms'
9import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10import { SharedMainModule } from '@app/shared/shared-main'
11import { SharedModerationModule } from '@app/shared/shared-moderation'
12import { SharedShareModal } from '@app/shared/shared-share-modal'
13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
14import { SharedUsersModule } from '@app/shared/shared-users'
15import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
17import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
18import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
20import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
21import { MyAccountRoutingModule } from './my-account-routing.module'
22import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
23import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
24import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
25import { MyAccountEmailPreferencesComponent } from './my-account-settings/my-account-email-preferences'
26import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
27import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
28import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
29import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
30import { 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})
80export class MyAccountModule {
81}