diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-20 17:18:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-21 22:09:45 +0100 |
commit | 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c (patch) | |
tree | d6004d282a55d995eecba78bae95173bd0f11767 /client/src/app/videos/videos.module.ts | |
parent | 2c8d4697db4b5a2d645b7bfcaf91093a64597958 (diff) | |
download | PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.gz PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.zst PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.zip |
Client: split in angular modules
Diffstat (limited to 'client/src/app/videos/videos.module.ts')
-rw-r--r-- | client/src/app/videos/videos.module.ts | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/client/src/app/videos/videos.module.ts b/client/src/app/videos/videos.module.ts new file mode 100644 index 000000000..fb2f453b0 --- /dev/null +++ b/client/src/app/videos/videos.module.ts | |||
@@ -0,0 +1,42 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { VideosRoutingModule } from './videos-routing.module'; | ||
4 | import { VideosComponent } from './videos.component'; | ||
5 | import { VideoAddComponent } from './video-add'; | ||
6 | import { VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'; | ||
7 | import { VideoWatchComponent, VideoMagnetComponent, VideoShareComponent, WebTorrentService } from './video-watch'; | ||
8 | import { LoaderComponent, VideoService } from './shared'; | ||
9 | import { SharedModule } from '../shared'; | ||
10 | |||
11 | @NgModule({ | ||
12 | imports: [ | ||
13 | VideosRoutingModule, | ||
14 | SharedModule | ||
15 | ], | ||
16 | |||
17 | declarations: [ | ||
18 | VideosComponent, | ||
19 | |||
20 | VideoAddComponent, | ||
21 | |||
22 | VideoListComponent, | ||
23 | VideoMiniatureComponent, | ||
24 | VideoSortComponent, | ||
25 | |||
26 | VideoWatchComponent, | ||
27 | VideoMagnetComponent, | ||
28 | VideoShareComponent, | ||
29 | |||
30 | LoaderComponent | ||
31 | ], | ||
32 | |||
33 | exports: [ | ||
34 | VideosComponent | ||
35 | ], | ||
36 | |||
37 | providers: [ | ||
38 | VideoService, | ||
39 | WebTorrentService | ||
40 | ] | ||
41 | }) | ||
42 | export class VideosModule { } | ||