datasurvey/src/main/webapp/app/account/password/password.service.ts

15 lines
605 B
TypeScript

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ApplicationConfigService } from 'app/core/config/application-config.service';
@Injectable({ providedIn: 'root' })
export class PasswordService {
constructor(private http: HttpClient, private applicationConfigService: ApplicationConfigService) {}
save(newPassword: string, currentPassword: string): Observable<{}> {
return this.http.post(this.applicationConfigService.getEndpointFor('api/account/change-password'), { currentPassword, newPassword });
}
}