]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Fix accept ownership change accept
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { AutoCompleteModule } from 'primeng/autocomplete'
2 import { InputSwitchModule } from 'primeng/inputswitch'
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 { SharedFormModule } from '@app/shared/shared-forms'
8 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9 import { SharedMainModule } from '@app/shared/shared-main'
10 import { SharedModerationModule } from '@app/shared/shared-moderation'
11 import { SharedShareModal } from '@app/shared/shared-share-modal'
12 import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
13 import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
14 import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
15 import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
16 import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
17 import { MyAccountRoutingModule } from './my-account-routing.module'
18 import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
19 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
20 import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
21 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
22 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
23 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
24 import { MyAccountComponent } from './my-account.component'
25
26 @NgModule({
27 imports: [
28 MyAccountRoutingModule,
29
30 AutoCompleteModule,
31 TableModule,
32 InputSwitchModule,
33 DragDropModule,
34
35 SharedMainModule,
36 SharedFormModule,
37 SharedModerationModule,
38 SharedUserInterfaceSettingsModule,
39 SharedGlobalIconModule,
40 SharedAbuseListModule,
41 SharedShareModal
42 ],
43
44 declarations: [
45 MyAccountComponent,
46 MyAccountSettingsComponent,
47 MyAccountChangePasswordComponent,
48 MyAccountProfileComponent,
49 MyAccountChangeEmailComponent,
50
51 MyAccountDangerZoneComponent,
52 MyAccountBlocklistComponent,
53 MyAccountAbusesListComponent,
54 MyAccountServerBlocklistComponent,
55 MyAccountNotificationsComponent,
56 MyAccountNotificationPreferencesComponent
57 ],
58
59 exports: [
60 MyAccountComponent
61 ],
62
63 providers: []
64 })
65 export class MyAccountModule {
66 }