]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Automatically restart live on server/live restart
[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 { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
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 { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
14import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
15import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
16import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
17import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
18import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
19import { MyAccountRoutingModule } from './my-account-routing.module'
20import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
21import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
22import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
23import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
24import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
25import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
26import { MyAccountComponent } from './my-account.component'
27
28@NgModule({
29 imports: [
30 MyAccountRoutingModule,
31
32 AutoCompleteModule,
33 TableModule,
34 DragDropModule,
35
36 SharedMainModule,
37 SharedFormModule,
38 SharedModerationModule,
39 SharedUserInterfaceSettingsModule,
40 SharedGlobalIconModule,
41 SharedAbuseListModule,
42 SharedShareModal,
43 SharedActorImageModule,
44 SharedActorImageEditModule
45 ],
46
47 declarations: [
48 MyAccountComponent,
49 MyAccountSettingsComponent,
50 MyAccountChangePasswordComponent,
51 MyAccountProfileComponent,
52 MyAccountChangeEmailComponent,
53 MyAccountApplicationsComponent,
54
55 MyAccountDangerZoneComponent,
56 MyAccountBlocklistComponent,
57 MyAccountAbusesListComponent,
58 MyAccountServerBlocklistComponent,
59 MyAccountNotificationsComponent,
60 MyAccountNotificationPreferencesComponent
61 ],
62
63 exports: [
64 MyAccountComponent
65 ],
66
67 providers: []
68})
69export class MyAccountModule {
70}