diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-05-23 12:15:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-05-23 12:15:03 +0200 |
commit | aff038cd784ab09a9f62b2e81816110e100ba7b8 (patch) | |
tree | f840355a06dbfe8f3868059a5515faf4d2998026 /client/angular/videos/videos.service.ts | |
parent | cf20596c107eb0833259fa1098cc784267298a19 (diff) | |
download | PeerTube-aff038cd784ab09a9f62b2e81816110e100ba7b8.tar.gz PeerTube-aff038cd784ab09a9f62b2e81816110e100ba7b8.tar.zst PeerTube-aff038cd784ab09a9f62b2e81816110e100ba7b8.zip |
Lint the client
Diffstat (limited to 'client/angular/videos/videos.service.ts')
-rw-r--r-- | client/angular/videos/videos.service.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/angular/videos/videos.service.ts b/client/angular/videos/videos.service.ts index 43e3346aa..d5438fd82 100644 --- a/client/angular/videos/videos.service.ts +++ b/client/angular/videos/videos.service.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { Injectable } from '@angular/core'; | 1 | import { Injectable } from '@angular/core'; |
2 | import { Http, Response, RequestOptions, URLSearchParams } from '@angular/http'; | 2 | import { Http, Response, URLSearchParams } from '@angular/http'; |
3 | import { Observable } from 'rxjs/Rx'; | 3 | import { Observable } from 'rxjs/Rx'; |
4 | 4 | ||
5 | import { Pagination } from './pagination'; | 5 | import { Pagination } from './pagination'; |
@@ -17,7 +17,7 @@ export class VideosService { | |||
17 | getVideos(pagination: Pagination, sort: SortField) { | 17 | getVideos(pagination: Pagination, sort: SortField) { |
18 | const params = this.createPaginationParams(pagination); | 18 | const params = this.createPaginationParams(pagination); |
19 | 19 | ||
20 | if (sort) params.set('sort', sort) | 20 | if (sort) params.set('sort', sort); |
21 | 21 | ||
22 | return this.http.get(this._baseVideoUrl, { search: params }) | 22 | return this.http.get(this._baseVideoUrl, { search: params }) |
23 | .map(res => res.json()) | 23 | .map(res => res.json()) |
@@ -42,7 +42,7 @@ export class VideosService { | |||
42 | const params = this.createPaginationParams(pagination); | 42 | const params = this.createPaginationParams(pagination); |
43 | 43 | ||
44 | if (search.field) params.set('field', search.field); | 44 | if (search.field) params.set('field', search.field); |
45 | if (sort) params.set('sort', sort) | 45 | if (sort) params.set('sort', sort); |
46 | 46 | ||
47 | return this.http.get(this._baseVideoUrl + 'search/' + encodeURIComponent(search.value), { search: params }) | 47 | return this.http.get(this._baseVideoUrl + 'search/' + encodeURIComponent(search.value), { search: params }) |
48 | .map(res => res.json()) | 48 | .map(res => res.json()) |