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