]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
Better video languages filter UX
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
74d63469 1import { AutoCompleteModule } from 'primeng/autocomplete'
67ed6552
C
2import { TableModule } from 'primeng/table'
3import { DragDropModule } from '@angular/cdk/drag-drop'
4import { NgModule } from '@angular/core'
94148c90 5import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
cdeddff1 6import { SharedActorImageModule } from '@app/shared/shared-actor-image'
983aa6f2 7import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
8import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9import { SharedMainModule } from '@app/shared/shared-main'
10import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 11import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552 12import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
94148c90 13import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
cdeddff1 14import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
67ed6552
C
15import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
16import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
67ed6552 17import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
4bb6886d 18import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 19import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 20import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
21import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
22import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
23import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
4bb6886d 24import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
67ed6552 25import { MyAccountComponent } from './my-account.component'
fbdcd4ec 26import { SharedAccountAvatarModule } from '../shared/shared-account-avatar/shared-account-avatar.module'
4bb6886d
C
27
28@NgModule({
29 imports: [
30 MyAccountRoutingModule,
67ed6552 31
74d63469 32 AutoCompleteModule,
276d9652 33 TableModule,
67ed6552
C
34 DragDropModule,
35
36 SharedMainModule,
983aa6f2 37 SharedFormModule,
67ed6552 38 SharedModerationModule,
67ed6552 39 SharedUserInterfaceSettingsModule,
94148c90 40 SharedGlobalIconModule,
82f443de 41 SharedAbuseListModule,
cdeddff1 42 SharedShareModal,
fbdcd4ec 43 SharedAccountAvatarModule,
cdeddff1 44 SharedActorImageModule
4bb6886d
C
45 ],
46
47 declarations: [
48 MyAccountComponent,
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
ed56ad11 51 MyAccountProfileComponent,
0ba5f5ba 52 MyAccountChangeEmailComponent,
5beb89f2 53 MyAccountApplicationsComponent,
0ba5f5ba 54
22a16e36 55 MyAccountDangerZoneComponent,
af5767ff 56 MyAccountBlocklistComponent,
94148c90 57 MyAccountAbusesListComponent,
80bfd33c 58 MyAccountServerBlocklistComponent,
2f1548fd 59 MyAccountNotificationsComponent,
17119e4a 60 MyAccountNotificationPreferencesComponent
4bb6886d
C
61 ],
62
63 exports: [
64 MyAccountComponent
65 ],
66
67 providers: []
68})
ccfcdb67
C
69export class MyAccountModule {
70}