diff options
Diffstat (limited to 'client/src/app/search/search.module.ts')
-rw-r--r-- | client/src/app/search/search.module.ts | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/client/src/app/search/search.module.ts b/client/src/app/search/search.module.ts index df5459802..65c954de8 100644 --- a/client/src/app/search/search.module.ts +++ b/client/src/app/search/search.module.ts | |||
@@ -1,11 +1,15 @@ | |||
1 | import { TagInputModule } from 'ngx-chips' | 1 | import { TagInputModule } from 'ngx-chips' |
2 | import { NgModule } from '@angular/core' | 2 | import { NgModule } from '@angular/core' |
3 | import { SearchFiltersComponent } from '@app/search/search-filters.component' | 3 | import { SharedFormModule } from '@app/shared/shared-forms' |
4 | import { SearchRoutingModule } from '@app/search/search-routing.module' | 4 | import { SharedMainModule } from '@app/shared/shared-main' |
5 | import { SearchComponent } from '@app/search/search.component' | 5 | import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription' |
6 | import { SearchService } from '@app/search/search.service' | 6 | import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature' |
7 | import { SharedModule } from '../shared' | ||
8 | import { ChannelLazyLoadResolver } from './channel-lazy-load.resolver' | 7 | import { ChannelLazyLoadResolver } from './channel-lazy-load.resolver' |
8 | import { HighlightPipe } from './highlight.pipe' | ||
9 | import { SearchFiltersComponent } from './search-filters.component' | ||
10 | import { SearchRoutingModule } from './search-routing.module' | ||
11 | import { SearchComponent } from './search.component' | ||
12 | import { SearchService } from './search.service' | ||
9 | import { VideoLazyLoadResolver } from './video-lazy-load.resolver' | 13 | import { VideoLazyLoadResolver } from './video-lazy-load.resolver' |
10 | 14 | ||
11 | @NgModule({ | 15 | @NgModule({ |
@@ -13,7 +17,10 @@ import { VideoLazyLoadResolver } from './video-lazy-load.resolver' | |||
13 | TagInputModule, | 17 | TagInputModule, |
14 | 18 | ||
15 | SearchRoutingModule, | 19 | SearchRoutingModule, |
16 | SharedModule | 20 | SharedMainModule, |
21 | SharedFormModule, | ||
22 | SharedUserSubscriptionModule, | ||
23 | SharedVideoMiniatureModule | ||
17 | ], | 24 | ], |
18 | 25 | ||
19 | declarations: [ | 26 | declarations: [ |
@@ -29,7 +36,8 @@ import { VideoLazyLoadResolver } from './video-lazy-load.resolver' | |||
29 | providers: [ | 36 | providers: [ |
30 | SearchService, | 37 | SearchService, |
31 | VideoLazyLoadResolver, | 38 | VideoLazyLoadResolver, |
32 | ChannelLazyLoadResolver | 39 | ChannelLazyLoadResolver, |
40 | HighlightPipe | ||
33 | ] | 41 | ] |
34 | }) | 42 | }) |
35 | export class SearchModule { } | 43 | export class SearchModule { } |