]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
Lazy load emoji
[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'
983aa6f2 6import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
7import { SharedGlobalIconModule } from '@app/shared/shared-icons'
8import { SharedMainModule } from '@app/shared/shared-main'
9import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 10import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552 11import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
94148c90 12import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
67ed6552
C
13import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
14import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
67ed6552 15import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
4bb6886d 16import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 17import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 18import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
19import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
20import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
21import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
4bb6886d 22import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
67ed6552 23import { MyAccountComponent } from './my-account.component'
4bb6886d
C
24
25@NgModule({
26 imports: [
27 MyAccountRoutingModule,
67ed6552 28
74d63469 29 AutoCompleteModule,
276d9652 30 TableModule,
67ed6552
C
31 DragDropModule,
32
33 SharedMainModule,
983aa6f2 34 SharedFormModule,
67ed6552 35 SharedModerationModule,
67ed6552 36 SharedUserInterfaceSettingsModule,
94148c90 37 SharedGlobalIconModule,
82f443de 38 SharedAbuseListModule,
17119e4a 39 SharedShareModal
4bb6886d
C
40 ],
41
42 declarations: [
43 MyAccountComponent,
44 MyAccountSettingsComponent,
45 MyAccountChangePasswordComponent,
ed56ad11 46 MyAccountProfileComponent,
0ba5f5ba
C
47 MyAccountChangeEmailComponent,
48
22a16e36 49 MyAccountDangerZoneComponent,
af5767ff 50 MyAccountBlocklistComponent,
94148c90 51 MyAccountAbusesListComponent,
80bfd33c 52 MyAccountServerBlocklistComponent,
2f1548fd 53 MyAccountNotificationsComponent,
17119e4a 54 MyAccountNotificationPreferencesComponent
4bb6886d
C
55 ],
56
57 exports: [
58 MyAccountComponent
59 ],
60
61 providers: []
62})
ccfcdb67
C
63export class MyAccountModule {
64}