diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-01 18:56:26 +0100 |
commit | 202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7 (patch) | |
tree | 605df063371b6be32ca0773bf2917b0c5d9163ae /client/src/app/shared/shared.module.ts | |
parent | c30745f342480b59fb0856a059c8c2fbffbcfc6a (diff) | |
download | PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.gz PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.tar.zst PeerTube-202f6b6c9dcc9b0aec4b0c1b15e455c22a7952a7.zip |
Begin videos of an account
Diffstat (limited to 'client/src/app/shared/shared.module.ts')
-rw-r--r-- | client/src/app/shared/shared.module.ts | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 7618748e9..e76f7636a 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -20,6 +20,9 @@ import { SearchComponent, SearchService } from './search' | |||
20 | import { UserService } from './users' | 20 | import { UserService } from './users' |
21 | import { VideoAbuseService } from './video-abuse' | 21 | import { VideoAbuseService } from './video-abuse' |
22 | import { VideoBlacklistService } from './video-blacklist' | 22 | import { VideoBlacklistService } from './video-blacklist' |
23 | import { VideoThumbnailComponent } from './video/video-thumbnail.component' | ||
24 | import { VideoService } from './video/video.service' | ||
25 | import { InfiniteScrollModule } from 'ngx-infinite-scroll' | ||
23 | 26 | ||
24 | @NgModule({ | 27 | @NgModule({ |
25 | imports: [ | 28 | imports: [ |
@@ -34,7 +37,8 @@ import { VideoBlacklistService } from './video-blacklist' | |||
34 | ProgressbarModule.forRoot(), | 37 | ProgressbarModule.forRoot(), |
35 | 38 | ||
36 | DataTableModule, | 39 | DataTableModule, |
37 | PrimeSharedModule | 40 | PrimeSharedModule, |
41 | InfiniteScrollModule | ||
38 | ], | 42 | ], |
39 | 43 | ||
40 | declarations: [ | 44 | declarations: [ |
@@ -42,6 +46,7 @@ import { VideoBlacklistService } from './video-blacklist' | |||
42 | KeysPipe, | 46 | KeysPipe, |
43 | SearchComponent, | 47 | SearchComponent, |
44 | LoaderComponent, | 48 | LoaderComponent, |
49 | VideoThumbnailComponent, | ||
45 | NumberFormatterPipe, | 50 | NumberFormatterPipe, |
46 | FromNowPipe | 51 | FromNowPipe |
47 | ], | 52 | ], |
@@ -58,11 +63,13 @@ import { VideoBlacklistService } from './video-blacklist' | |||
58 | ProgressbarModule, | 63 | ProgressbarModule, |
59 | DataTableModule, | 64 | DataTableModule, |
60 | PrimeSharedModule, | 65 | PrimeSharedModule, |
66 | InfiniteScrollModule, | ||
61 | BytesPipe, | 67 | BytesPipe, |
62 | KeysPipe, | 68 | KeysPipe, |
63 | 69 | ||
64 | SearchComponent, | 70 | SearchComponent, |
65 | LoaderComponent, | 71 | LoaderComponent, |
72 | VideoThumbnailComponent, | ||
66 | 73 | ||
67 | NumberFormatterPipe, | 74 | NumberFormatterPipe, |
68 | FromNowPipe | 75 | FromNowPipe |
@@ -75,7 +82,8 @@ import { VideoBlacklistService } from './video-blacklist' | |||
75 | SearchService, | 82 | SearchService, |
76 | VideoAbuseService, | 83 | VideoAbuseService, |
77 | VideoBlacklistService, | 84 | VideoBlacklistService, |
78 | UserService | 85 | UserService, |
86 | VideoService | ||
79 | ] | 87 | ] |
80 | }) | 88 | }) |
81 | export class SharedModule { } | 89 | export class SharedModule { } |