]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account.module.ts
Use pvar() instead of SCSS variables
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
... / ...
CommitLineData
1import { QRCodeModule } from 'angularx-qrcode'
2import { AutoCompleteModule } from 'primeng/autocomplete'
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 { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
8import { SharedFormModule } from '@app/shared/shared-forms'
9import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10import { SharedMainModule } from '@app/shared/shared-main'
11import { SharedModerationModule } from '@app/shared/shared-moderation'
12import { SharedShareModal } from '@app/shared/shared-share-modal'
13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
14import { SharedUsersModule } from '@app/shared/shared-users'
15import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
17import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
18import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
20import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
21import { MyAccountRoutingModule } from './my-account-routing.module'
22import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
23import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
24import { MyAccountDangerZoneComponent } from './my-account-settings/my-account-danger-zone'
25import { MyAccountNotificationPreferencesComponent } from './my-account-settings/my-account-notification-preferences'
26import { MyAccountProfileComponent } from './my-account-settings/my-account-profile/my-account-profile.component'
27import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
28import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
29import { MyAccountComponent } from './my-account.component'
30
31@NgModule({
32 imports: [
33 MyAccountRoutingModule,
34
35 QRCodeModule,
36 AutoCompleteModule,
37 TableModule,
38 DragDropModule,
39
40 SharedMainModule,
41 SharedFormModule,
42 SharedModerationModule,
43 SharedUserInterfaceSettingsModule,
44 SharedUsersModule,
45 SharedGlobalIconModule,
46 SharedAbuseListModule,
47 SharedShareModal,
48 SharedActorImageModule,
49 SharedActorImageEditModule
50 ],
51
52 declarations: [
53 MyAccountComponent,
54 MyAccountSettingsComponent,
55 MyAccountChangePasswordComponent,
56 MyAccountProfileComponent,
57 MyAccountChangeEmailComponent,
58 MyAccountApplicationsComponent,
59
60 MyAccountTwoFactorButtonComponent,
61 MyAccountTwoFactorComponent,
62
63 MyAccountDangerZoneComponent,
64 MyAccountBlocklistComponent,
65 MyAccountAbusesListComponent,
66 MyAccountServerBlocklistComponent,
67 MyAccountNotificationsComponent,
68 MyAccountNotificationPreferencesComponent
69 ],
70
71 exports: [
72 MyAccountComponent
73 ],
74
75 providers: []
76})
77export class MyAccountModule {
78}