]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.module.ts
Auto focus plugin search input
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.module.ts
CommitLineData
170726f5 1import { NgModule } from '@angular/core'
67ed6552
C
2import { SharedFormModule } from '@app/shared/shared-forms'
3import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
6import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
7import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
8import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
9import { VideoChannelPlaylistsComponent } from './video-channel-playlists/video-channel-playlists.component'
10import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
170726f5
C
11import { VideoChannelsRoutingModule } from './video-channels-routing.module'
12import { VideoChannelsComponent } from './video-channels.component'
170726f5
C
13
14@NgModule({
15 imports: [
16 VideoChannelsRoutingModule,
67ed6552
C
17
18 SharedMainModule,
19 SharedFormModule,
20 SharedVideoPlaylistModule,
21 SharedVideoMiniatureModule,
22 SharedUserSubscriptionModule,
23 SharedGlobalIconModule
170726f5
C
24 ],
25
26 declarations: [
27 VideoChannelsComponent,
28 VideoChannelVideosComponent,
bce47964
C
29 VideoChannelAboutComponent,
30 VideoChannelPlaylistsComponent
170726f5
C
31 ],
32
33 exports: [
34 VideoChannelsComponent
35 ],
36
37 providers: []
38})
39export class VideoChannelsModule { }