]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
d12b40fb 1import { QRCodeModule } from 'angularx-qrcode'
74d63469 2import { AutoCompleteModule } from 'primeng/autocomplete'
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'
ec489ce2 7import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
983aa6f2 8import { SharedFormModule } from '@app/shared/shared-forms'
67ed6552
C
9import { SharedGlobalIconModule } from '@app/shared/shared-icons'
10import { SharedMainModule } from '@app/shared/shared-main'
11import { SharedModerationModule } from '@app/shared/shared-moderation'
82f443de 12import { SharedShareModal } from '@app/shared/shared-share-modal'
67ed6552 13import { SharedUserInterfaceSettingsModule } from '@app/shared/shared-user-settings'
2166c058 14import { SharedUsersModule } from '@app/shared/shared-users'
746018f6 15import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
94148c90 16import { MyAccountAbusesListComponent } from './my-account-abuses/my-account-abuses-list.component'
cdeddff1 17import { MyAccountApplicationsComponent } from './my-account-applications/my-account-applications.component'
67ed6552
C
18import { MyAccountBlocklistComponent } from './my-account-blocklist/my-account-blocklist.component'
19import { MyAccountServerBlocklistComponent } from './my-account-blocklist/my-account-server-blocklist.component'
67ed6552 20import { MyAccountNotificationsComponent } from './my-account-notifications/my-account-notifications.component'
4bb6886d 21import { MyAccountRoutingModule } from './my-account-routing.module'
67ed6552 22import { MyAccountChangeEmailComponent } from './my-account-settings/my-account-change-email'
4bb6886d 23import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
67ed6552
C
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'
4bb6886d 27import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
2166c058 28import { MyAccountTwoFactorButtonComponent, MyAccountTwoFactorComponent } from './my-account-settings/my-account-two-factor'
67ed6552 29import { MyAccountComponent } from './my-account.component'
4bb6886d
C
30
31@NgModule({
32 imports: [
33 MyAccountRoutingModule,
67ed6552 34
d12b40fb 35 QRCodeModule,
74d63469 36 AutoCompleteModule,
276d9652 37 TableModule,
67ed6552
C
38 DragDropModule,
39
40 SharedMainModule,
983aa6f2 41 SharedFormModule,
67ed6552 42 SharedModerationModule,
67ed6552 43 SharedUserInterfaceSettingsModule,
2166c058 44 SharedUsersModule,
94148c90 45 SharedGlobalIconModule,
82f443de 46 SharedAbuseListModule,
cdeddff1 47 SharedShareModal,
746018f6 48 SharedActorImageModule,
ec489ce2 49 SharedActorImageEditModule
4bb6886d
C
50 ],
51
52 declarations: [
53 MyAccountComponent,
54 MyAccountSettingsComponent,
55 MyAccountChangePasswordComponent,
ed56ad11 56 MyAccountProfileComponent,
0ba5f5ba 57 MyAccountChangeEmailComponent,
5beb89f2 58 MyAccountApplicationsComponent,
0ba5f5ba 59
d12b40fb
C
60 MyAccountTwoFactorButtonComponent,
61 MyAccountTwoFactorComponent,
62
22a16e36 63 MyAccountDangerZoneComponent,
af5767ff 64 MyAccountBlocklistComponent,
94148c90 65 MyAccountAbusesListComponent,
80bfd33c 66 MyAccountServerBlocklistComponent,
2f1548fd 67 MyAccountNotificationsComponent,
17119e4a 68 MyAccountNotificationPreferencesComponent
4bb6886d
C
69 ],
70
71 exports: [
72 MyAccountComponent
73 ],
74
2166c058 75 providers: []
4bb6886d 76})
ccfcdb67
C
77export class MyAccountModule {
78}