]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
username field consistency
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
... / ...
CommitLineData
1import { AutoCompleteModule } from 'primeng/autocomplete'
2import { TableModule } from 'primeng/table'
3import { DragDropModule } from '@angular/cdk/drag-drop'
4import { NgModule } from '@angular/core'
5import { SharedAbuseListModule } from '@app/shared/shared-abuse-list'
6import { SharedFormModule } from '@app/shared/shared-forms'
7import { SharedGlobalIconModule } from '@app/shared/shared-icons'
8import { SharedMainModule } from '@app/shared/shared-main'
9import { SharedModerationModule } from '@app/shared/shared-moderation'
10import { SharedShareModal } from '@app/shared/shared-share-modal'
11import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
12import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
13import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
14import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
15import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
16import { MyAccountRoutingModule } from './my-account-routing.module'
17import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
18import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
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'
22import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
23import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
24import { MyAccountComponent } from './my-account.component'
25
26@NgModule({
27 imports: [
28 MyAccountRoutingModule,
29
30 AutoCompleteModule,
31 TableModule,
32 DragDropModule,
33
34 SharedMainModule,
35 SharedFormModule,
36 SharedModerationModule,
37 SharedUserInterfaceSettingsModule,
38 SharedGlobalIconModule,
39 SharedAbuseListModule,
40 SharedShareModal
41 ],
42
43 declarations: [
44 MyAccountComponent,
45 MyAccountSettingsComponent,
46 MyAccountChangePasswordComponent,
47 MyAccountProfileComponent,
48 MyAccountChangeEmailComponent,
49 MyAccountApplicationsComponent,
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}