]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
d12b40fb 1import { QRCodeModule } from 'angularx-qrcode'
74d63469 2import { AutoCompleteModule } from 'primeng/autocomplete'
67ed6552
C
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
94148c90 6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
ec489ce2 7import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
983aa6f2 8import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
9import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10import { SharedMainModule } from '@app/shared/shared-main'
11import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 12import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552 13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
2166c058 14import { SharedUsersModule } from '@app/shared/shared-users'
746018f6 15import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
94148c90 16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
cdeddff1 17import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
67ed6552
C
18import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
67ed6552 20import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
4bb6886d 21import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 22import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 23import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552 24import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
cb0eda56 25import { MyAccountEmailPreferencesComponent } from './my-account-settings/my-account-email-preferences'
67ed6552
C
26import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
27import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
4bb6886d 28import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
2166c058 29import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
67ed6552 30import { MyAccountComponent } from './my-account.component'
4bb6886d
C
31
32@NgModule({
33 imports: [
34 MyAccountRoutingModule,
67ed6552 35
d12b40fb 36 QRCodeModule,
74d63469 37 AutoCompleteModule,
276d9652 38 TableModule,
67ed6552
C
39 DragDropModule,
40
41 SharedMainModule,
983aa6f2 42 SharedFormModule,
67ed6552 43 SharedModerationModule,
67ed6552 44 SharedUserInterfaceSettingsModule,
2166c058 45 SharedUsersModule,
94148c90 46 SharedGlobalIconModule,
82f443de 47 SharedAbuseListModule,
cdeddff1 48 SharedShareModal,
746018f6 49 SharedActorImageModule,
ec489ce2 50 SharedActorImageEditModule
4bb6886d
C
51 ],
52
53 declarations: [
54 MyAccountComponent,
55 MyAccountSettingsComponent,
56 MyAccountChangePasswordComponent,
ed56ad11 57 MyAccountProfileComponent,
0ba5f5ba 58 MyAccountChangeEmailComponent,
5beb89f2 59 MyAccountApplicationsComponent,
0ba5f5ba 60
d12b40fb
C
61 MyAccountTwoFactorButtonComponent,
62 MyAccountTwoFactorComponent,
63
22a16e36 64 MyAccountDangerZoneComponent,
af5767ff 65 MyAccountBlocklistComponent,
94148c90 66 MyAccountAbusesListComponent,
80bfd33c 67 MyAccountServerBlocklistComponent,
2f1548fd 68 MyAccountNotificationsComponent,
cb0eda56
AG
69 MyAccountNotificationPreferencesComponent,
70
71 MyAccountEmailPreferencesComponent
4bb6886d
C
72 ],
73
74 exports: [
75 MyAccountComponent
76 ],
77
2166c058 78 providers: []
4bb6886d 79})
ccfcdb67
C
80export class MyAccountModule {
81}