]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-library/+my-video-channels/my-video-channels.module.ts
Fix my library/account/admin sub titles alignment
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-library / +my-video-channels / my-video-channels.module.ts
... / ...
CommitLineData
1import { ChartModule } from 'primeng/chart'
2import { NgModule } from '@angular/core'
3import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
4import { SharedFormModule } from '@app/shared/shared-forms'
5import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6import { SharedMainModule } from '@app/shared/shared-main'
7import { MyVideoChannelCreateComponent } from './my-video-channel-create.component'
8import { MyVideoChannelUpdateComponent } from './my-video-channel-update.component'
9import { MyVideoChannelsRoutingModule } from './my-video-channels-routing.module'
10import { MyVideoChannelsComponent } from './my-video-channels.component'
11import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
12
13@NgModule({
14 imports: [
15 MyVideoChannelsRoutingModule,
16
17 ChartModule,
18
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22 SharedActorImageEditModule,
23 SharedActorImageModule
24 ],
25
26 declarations: [
27 MyVideoChannelsComponent,
28 MyVideoChannelCreateComponent,
29 MyVideoChannelUpdateComponent
30 ],
31
32 exports: [],
33 providers: []
34})
35export class MyVideoChannelsModule { }