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