diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-05 09:34:41 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-05 09:34:41 +0200 |
commit | 5555f886c0efbe6ee9c3ce5bac73bd3734a4e631 (patch) | |
tree | b59f467b17328a457ebb6cfeadd4d452cc2a3436 /client/src/app | |
parent | e56b20f5872bc640b59501817bc41fb0db09c253 (diff) | |
download | PeerTube-5555f886c0efbe6ee9c3ce5bac73bd3734a4e631.tar.gz PeerTube-5555f886c0efbe6ee9c3ce5bac73bd3734a4e631.tar.zst PeerTube-5555f886c0efbe6ee9c3ce5bac73bd3734a4e631.zip |
Do not import whole rxjs
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/friends/friend.service.ts | 2 | ||||
-rw-r--r-- | client/src/app/shared/users/auth.service.ts | 3 | ||||
-rw-r--r-- | client/src/app/videos/shared/video.service.ts | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/client/src/app/friends/friend.service.ts b/client/src/app/friends/friend.service.ts index a8b1a1bd3..f956a5ece 100644 --- a/client/src/app/friends/friend.service.ts +++ b/client/src/app/friends/friend.service.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { Injectable } from '@angular/core'; | 1 | import { Injectable } from '@angular/core'; |
2 | import { Http, Response } from '@angular/http'; | 2 | import { Http, Response } from '@angular/http'; |
3 | import { Observable } from 'rxjs/Rx'; | 3 | import { Observable } from 'rxjs/Observable'; |
4 | 4 | ||
5 | import { AuthService } from '../shared'; | 5 | import { AuthService } from '../shared'; |
6 | 6 | ||
diff --git a/client/src/app/shared/users/auth.service.ts b/client/src/app/shared/users/auth.service.ts index d63fe38f3..720037563 100644 --- a/client/src/app/shared/users/auth.service.ts +++ b/client/src/app/shared/users/auth.service.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Injectable } from '@angular/core'; | 1 | import { Injectable } from '@angular/core'; |
2 | import { Headers, Http, RequestOptions, Response, URLSearchParams } from '@angular/http'; | 2 | import { Headers, Http, RequestOptions, Response, URLSearchParams } from '@angular/http'; |
3 | import { Observable, Subject } from 'rxjs/Rx'; | 3 | import { Observable } from 'rxjs/Observable'; |
4 | import { Subject } from 'rxjs/Subject'; | ||
4 | 5 | ||
5 | import { AuthStatus } from './auth-status.model'; | 6 | import { AuthStatus } from './auth-status.model'; |
6 | import { User } from './user.model'; | 7 | import { User } from './user.model'; |
diff --git a/client/src/app/videos/shared/video.service.ts b/client/src/app/videos/shared/video.service.ts index 76d46cbb4..dcbef7717 100644 --- a/client/src/app/videos/shared/video.service.ts +++ b/client/src/app/videos/shared/video.service.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { Injectable } from '@angular/core'; | 1 | import { Injectable } from '@angular/core'; |
2 | import { Http, Response, URLSearchParams } from '@angular/http'; | 2 | import { Http, Response, URLSearchParams } from '@angular/http'; |
3 | import { Observable } from 'rxjs/Rx'; | 3 | import { Observable } from 'rxjs/Observable'; |
4 | 4 | ||
5 | import { Pagination } from './pagination.model'; | 5 | import { Pagination } from './pagination.model'; |
6 | import { Search } from '../../shared'; | 6 | import { Search } from '../../shared'; |