]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/videos.module.ts
enable email verification by admin (#1348)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { VideoLocalComponent } from '@app/videos/video-list/video-local.component'
3import { SharedModule } from '../shared'
4import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
5import { VideoTrendingComponent } from './video-list/video-trending.component'
6import { VideosRoutingModule } from './videos-routing.module'
7import { VideosComponent } from './videos.component'
8import { VideoUserSubscriptionsComponent } from '@app/videos/video-list/video-user-subscriptions.component'
9import { VideoOverviewComponent } from '@app/videos/video-list/video-overview.component'
10
11@NgModule({
12 imports: [
13 VideosRoutingModule,
14 SharedModule
15 ],
16
17 declarations: [
18 VideosComponent,
19
20 VideoTrendingComponent,
21 VideoRecentlyAddedComponent,
22 VideoLocalComponent,
23 VideoUserSubscriptionsComponent,
24 VideoOverviewComponent
25 ],
26
27 exports: [
28 VideosComponent
29 ],
30
31 providers: []
32})
33export class VideosModule { }