]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account.module.ts
Use height instead of width to represent the video resolution
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
1 import { TableModule } from 'primeng/table'
2 import { NgModule } from '@angular/core'
3 import { SharedModule } from '../shared'
4 import { MyAccountRoutingModule } from './my-account-routing.module'
5 import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
6 import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
7 import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
8 import { MyAccountComponent } from './my-account.component'
9 import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
10 import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
11 import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
12 import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
13 import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
14 import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
15 import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
16 import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
17
18 @NgModule({
19 imports: [
20 MyAccountRoutingModule,
21 SharedModule,
22 TableModule
23 ],
24
25 declarations: [
26 MyAccountComponent,
27 MyAccountSettingsComponent,
28 MyAccountChangePasswordComponent,
29 MyAccountVideoSettingsComponent,
30 MyAccountProfileComponent,
31 MyAccountVideosComponent,
32 MyAccountVideoChannelsComponent,
33 MyAccountVideoChannelCreateComponent,
34 MyAccountVideoChannelUpdateComponent,
35 ActorAvatarInfoComponent,
36 MyAccountVideoImportsComponent,
37 MyAccountDangerZoneComponent
38 ],
39
40 exports: [
41 MyAccountComponent
42 ],
43
44 providers: []
45 })
46 export class MyAccountModule { }