]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channels.module.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedFormModule } from '@app/shared/shared-forms'
3 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4 import { SharedMainModule } from '@app/shared/shared-main'
5 import { SharedSupportModal } from '@app/shared/shared-support-modal'
6 import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7 import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
8 import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
9 import { VideoChannelPlaylistsComponent } from './video-channel-playlists/video-channel-playlists.component'
10 import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
11 import { VideoChannelsRoutingModule } from './video-channels-routing.module'
12 import { VideoChannelsComponent } from './video-channels.component'
13 import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
14
15 @NgModule({
16 imports: [
17 VideoChannelsRoutingModule,
18
19 SharedMainModule,
20 SharedFormModule,
21 SharedVideoPlaylistModule,
22 SharedVideoMiniatureModule,
23 SharedUserSubscriptionModule,
24 SharedGlobalIconModule,
25 SharedSupportModal,
26 SharedActorImageModule
27 ],
28
29 declarations: [
30 VideoChannelsComponent,
31 VideoChannelVideosComponent,
32 VideoChannelPlaylistsComponent
33 ],
34
35 exports: [
36 VideoChannelsComponent
37 ],
38
39 providers: []
40 })
41 export class VideoChannelsModule { }