diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-28 01:10:26 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-28 01:10:26 +0100 |
commit | bf64ed4196938ba9002c887cadb01bd2a6e3127a (patch) | |
tree | 889b8f89c59cd513edd973785a76ccf6f8c23f3d /client/src/app/shared/users | |
parent | 71810d0bcbed0e46ddaa1d4eadd028154786fffb (diff) | |
download | PeerTube-bf64ed4196938ba9002c887cadb01bd2a6e3127a.tar.gz PeerTube-bf64ed4196938ba9002c887cadb01bd2a6e3127a.tar.zst PeerTube-bf64ed4196938ba9002c887cadb01bd2a6e3127a.zip |
Add search bars for a user's videos and playlist library
Diffstat (limited to 'client/src/app/shared/users')
-rw-r--r-- | client/src/app/shared/users/user.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/users/user.service.ts b/client/src/app/shared/users/user.service.ts index 41ee87197..051e0bfa4 100644 --- a/client/src/app/shared/users/user.service.ts +++ b/client/src/app/shared/users/user.service.ts | |||
@@ -88,7 +88,7 @@ export class UserService { | |||
88 | } | 88 | } |
89 | 89 | ||
90 | getMyVideoQuotaUsed () { | 90 | getMyVideoQuotaUsed () { |
91 | const url = UserService.BASE_USERS_URL + '/me/video-quota-used' | 91 | const url = UserService.BASE_USERS_URL + 'me/video-quota-used' |
92 | 92 | ||
93 | return this.authHttp.get<UserVideoQuota>(url) | 93 | return this.authHttp.get<UserVideoQuota>(url) |
94 | .pipe(catchError(err => this.restExtractor.handleError(err))) | 94 | .pipe(catchError(err => this.restExtractor.handleError(err))) |