]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channels.module.ts
adjust registration form width on mobile (#3274)
[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 { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
6 import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
7 import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
8 import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
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
14 @NgModule({
15 imports: [
16 VideoChannelsRoutingModule,
17
18 SharedMainModule,
19 SharedFormModule,
20 SharedVideoPlaylistModule,
21 SharedVideoMiniatureModule,
22 SharedUserSubscriptionModule,
23 SharedGlobalIconModule
24 ],
25
26 declarations: [
27 VideoChannelsComponent,
28 VideoChannelVideosComponent,
29 VideoChannelAboutComponent,
30 VideoChannelPlaylistsComponent
31 ],
32
33 exports: [
34 VideoChannelsComponent
35 ],
36
37 providers: []
38 })
39 export class VideoChannelsModule { }