]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+video-channels/video-channels.module.ts
Move admin stuff in +admin
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedFormModule } from '@app/shared/shared-forms'
3import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedSupportModal } from '@app/shared/shared-support-modal'
6import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
8import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
9import { VideoChannelPlaylistsComponent } from './video-channel-playlists/video-channel-playlists.component'
10import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
11import { VideoChannelsRoutingModule } from './video-channels-routing.module'
12import { VideoChannelsComponent } from './video-channels.component'
13import { 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})
41export class VideoChannelsModule { }