diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-26 10:03:40 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-26 10:03:40 +0200 |
commit | ed56ad1193bb5bb0a81fb843a11eb90d3fed9861 (patch) | |
tree | 64842447b4721978c69e1d2b3a964951c789c408 /client/src/app/shared/users | |
parent | d62cf3234ccfca0223a9639782635f0fb6594f8c (diff) | |
download | PeerTube-ed56ad1193bb5bb0a81fb843a11eb90d3fed9861.tar.gz PeerTube-ed56ad1193bb5bb0a81fb843a11eb90d3fed9861.tar.zst PeerTube-ed56ad1193bb5bb0a81fb843a11eb90d3fed9861.zip |
Add ability to update the user display name/description
Diffstat (limited to 'client/src/app/shared/users')
-rw-r--r-- | client/src/app/shared/users/user.service.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/users/user.service.ts b/client/src/app/shared/users/user.service.ts index da7b583f4..adb840cec 100644 --- a/client/src/app/shared/users/user.service.ts +++ b/client/src/app/shared/users/user.service.ts | |||
@@ -26,10 +26,10 @@ export class UserService { | |||
26 | .catch(res => this.restExtractor.handleError(res)) | 26 | .catch(res => this.restExtractor.handleError(res)) |
27 | } | 27 | } |
28 | 28 | ||
29 | updateMyDetails (details: UserUpdateMe) { | 29 | updateMyProfile (profile: UserUpdateMe) { |
30 | const url = UserService.BASE_USERS_URL + 'me' | 30 | const url = UserService.BASE_USERS_URL + 'me' |
31 | 31 | ||
32 | return this.authHttp.put(url, details) | 32 | return this.authHttp.put(url, profile) |
33 | .map(this.restExtractor.extractDataBool) | 33 | .map(this.restExtractor.extractDataBool) |
34 | .catch(res => this.restExtractor.handleError(res)) | 34 | .catch(res => this.restExtractor.handleError(res)) |
35 | } | 35 | } |