]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/account/account.service.ts
Client: add more informations to watch video view
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.service.ts
CommitLineData
629d8d6f
C
1import { Injectable } from '@angular/core';
2
de59c48f 3import { AuthHttp, AuthService, RestExtractor } from '../shared';
629d8d6f
C
4
5@Injectable()
6export class AccountService {
7 private static BASE_USERS_URL = '/api/v1/users/';
8
de59c48f
C
9 constructor(
10 private authHttp: AuthHttp,
11 private authService: AuthService,
12 private restExtractor: RestExtractor
13 ) {}
629d8d6f
C
14
15 changePassword(newPassword: string) {
16 const url = AccountService.BASE_USERS_URL + this.authService.getUser().id;
17 const body = {
18 password: newPassword
19 };
20
de59c48f
C
21 return this.authHttp.put(url, body)
22 .map(this.restExtractor.extractDataBool)
23 .catch((res) => this.restExtractor.handleError(res));
629d8d6f
C
24 }
25}