]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
add user account email verificiation (#977)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
066e94c5 2import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
80958c78 3import { SharedModule } from '../shared'
9bf9d2a5
C
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
df98563e
C
6import { VideosRoutingModule } from './videos-routing.module'
7import { VideosComponent } from './videos.component'
22a16e36 8import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
693b1aba
C
9
10@NgModule({
11 imports: [
12 VideosRoutingModule,
202f6b6c 13 SharedModule
693b1aba
C
14 ],
15
16 declarations: [
17 VideosComponent,
18
9bf9d2a5
C
19 VideoTrendingComponent,
20 VideoRecentlyAddedComponent,
22a16e36
C
21 VideoLocalComponent,
22 VideoUserSubscriptionsComponent
693b1aba
C
23 ],
24
25 exports: [
26 VideosComponent
27 ],
28
202f6b6c 29 providers: []
693b1aba
C
30})
31export class VideosModule { }