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