]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { AutoCompleteModule } from 'primeng/autocomplete'
2import { InputSwitchModule } from 'primeng/inputswitch'
3import { TableModule } from 'primeng/table'
4import { DragDropModule } from '@angular/cdk/drag-drop'
5import { NgModule } from '@angular/core'
6import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
7import { SharedFormModule } from '@app/shared/shared-forms'
8import { SharedGlobalIconModule } from '@app/shared/shared-icons'
9import { SharedMainModule } from '@app/shared/shared-main'
10import { SharedModerationModule } from '@app/shared/shared-moderation'
11import { SharedShareModal } from '@app/shared/shared-share-modal'
12import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
13import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
14import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
15import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
16import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
17import { MyAccountRoutingModule } from './my-account-routing.module'
18import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
19import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
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'
23import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
24import { MyAccountComponent } from './my-account.component'
25
26@NgModule({
27 imports: [
28 MyAccountRoutingModule,
29
30 AutoCompleteModule,
31 TableModule,
32 InputSwitchModule,
33 DragDropModule,
34
35 SharedMainModule,
36 SharedFormModule,
37 SharedModerationModule,
38 SharedUserInterfaceSettingsModule,
39 SharedGlobalIconModule,
40 SharedAbuseListModule,
41 SharedShareModal
42 ],
43
44 declarations: [
45 MyAccountComponent,
46 MyAccountSettingsComponent,
47 MyAccountChangePasswordComponent,
48 MyAccountProfileComponent,
49 MyAccountChangeEmailComponent,
50
51 MyAccountDangerZoneComponent,
52 MyAccountBlocklistComponent,
53 MyAccountAbusesListComponent,
54 MyAccountServerBlocklistComponent,
55 MyAccountNotificationsComponent,
56 MyAccountNotificationPreferencesComponent
57 ],
58
59 exports: [
60 MyAccountComponent
61 ],
62
63 providers: []
64})
65export class MyAccountModule {
66}