]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.module.ts
fix likes bar, grid adjustment and menu width
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.module.ts
CommitLineData
ed31c059 1import { TableModule } from 'primeng/table'
4bb6886d
C
2import { NgModule } from '@angular/core'
3import { SharedModule } from '../shared'
4import { MyAccountRoutingModule } from './my-account-routing.module'
5import { MyAccountChangePasswordComponent } from './my-account-settings/my-account-change-password/my-account-change-password.component'
ed56ad11 6import { MyAccountVideoSettingsComponent } from './my-account-settings/my-account-video-settings/my-account-video-settings.component'
4bb6886d
C
7import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
8import { MyAccountComponent } from './my-account.component'
9import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
62e62f11
C
10import { MyAccountProfileComponent } from '@app/+my-account/my-account-settings/my-account-profile/my-account-profile.component'
11import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
12import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
13import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
52d9f792 14import { ActorAvatarInfoComponent } from '@app/+my-account/shared/actor-avatar-info.component'
ed31c059 15import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component'
92b9d60c 16import { MyAccountDangerZoneComponent } from '@app/+my-account/my-account-settings/my-account-danger-zone'
22a16e36 17import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component'
4bb6886d
C
18
19@NgModule({
20 imports: [
21 MyAccountRoutingModule,
ed31c059
C
22 SharedModule,
23 TableModule
4bb6886d
C
24 ],
25
26 declarations: [
27 MyAccountComponent,
28 MyAccountSettingsComponent,
29 MyAccountChangePasswordComponent,
ed56ad11
C
30 MyAccountVideoSettingsComponent,
31 MyAccountProfileComponent,
08c1efbe
C
32 MyAccountVideosComponent,
33 MyAccountVideoChannelsComponent,
34 MyAccountVideoChannelCreateComponent,
52d9f792 35 MyAccountVideoChannelUpdateComponent,
ed31c059 36 ActorAvatarInfoComponent,
92b9d60c 37 MyAccountVideoImportsComponent,
22a16e36
C
38 MyAccountDangerZoneComponent,
39 MyAccountSubscriptionsComponent
4bb6886d
C
40 ],
41
42 exports: [
43 MyAccountComponent
44 ],
45
46 providers: []
47})
48export class MyAccountModule { }