]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Rename actor image edit module
[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 { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
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 { SharedAccountAvatarModule } from '../shared/shared-account-avatar/shared-account-avatar.module'
14 import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
15 import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
16 import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
17 import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
18 import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
19 import { MyAccountRoutingModule } from './my-account-routing.module'
20 import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
21 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
22 import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
23 import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
24 import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
25 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
26 import { MyAccountComponent } from './my-account.component'
27
28 @NgModule({
29 imports: [
30 MyAccountRoutingModule,
31
32 AutoCompleteModule,
33 TableModule,
34 DragDropModule,
35
36 SharedMainModule,
37 SharedFormModule,
38 SharedModerationModule,
39 SharedUserInterfaceSettingsModule,
40 SharedGlobalIconModule,
41 SharedAbuseListModule,
42 SharedShareModal,
43 SharedAccountAvatarModule,
44 SharedActorImageEditModule
45 ],
46
47 declarations: [
48 MyAccountComponent,
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
51 MyAccountProfileComponent,
52 MyAccountChangeEmailComponent,
53 MyAccountApplicationsComponent,
54
55 MyAccountDangerZoneComponent,
56 MyAccountBlocklistComponent,
57 MyAccountAbusesListComponent,
58 MyAccountServerBlocklistComponent,
59 MyAccountNotificationsComponent,
60 MyAccountNotificationPreferencesComponent
61 ],
62
63 exports: [
64 MyAccountComponent
65 ],
66
67 providers: []
68 })
69 export class MyAccountModule {
70 }