]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
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'
4bb6886d
C
26
27@NgModule({
28 imports: [
29 MyAccountRoutingModule,
67ed6552 30
74d63469 31 AutoCompleteModule,
276d9652 32 TableModule,
67ed6552
C
33 DragDropModule,
34
35 SharedMainModule,
983aa6f2 36 SharedFormModule,
67ed6552 37 SharedModerationModule,
67ed6552 38 SharedUserInterfaceSettingsModule,
94148c90 39 SharedGlobalIconModule,
82f443de 40 SharedAbuseListModule,
cdeddff1
C
41 SharedShareModal,
42 SharedActorImageModule
4bb6886d
C
43 ],
44
45 declarations: [
46 MyAccountComponent,
47 MyAccountSettingsComponent,
48 MyAccountChangePasswordComponent,
ed56ad11 49 MyAccountProfileComponent,
0ba5f5ba 50 MyAccountChangeEmailComponent,
5beb89f2 51 MyAccountApplicationsComponent,
0ba5f5ba 52
22a16e36 53 MyAccountDangerZoneComponent,
af5767ff 54 MyAccountBlocklistComponent,
94148c90 55 MyAccountAbusesListComponent,
80bfd33c 56 MyAccountServerBlocklistComponent,
2f1548fd 57 MyAccountNotificationsComponent,
17119e4a 58 MyAccountNotificationPreferencesComponent
4bb6886d
C
59 ],
60
61 exports: [
62 MyAccountComponent
63 ],
64
65 providers: []
66})
ccfcdb67
C
67export class MyAccountModule {
68}