argos/dmp-frontend/src/app/core/services/email-confirmation/email-confirmation.service.ts

23 lines
712 B
TypeScript
Raw Normal View History

2019-09-23 10:17:03 +02:00
import { HttpHeaders } from '@angular/common/http';
import { Injectable } from "@angular/core";
import { environment } from "../../../../environments/environment";
2019-09-23 10:17:03 +02:00
import { BaseHttpService } from "../http/base-http.service";
@Injectable()
export class EmailConfirmationService {
private actioUrl: string;
private headers: HttpHeaders
constructor(private http: BaseHttpService) {
this.actioUrl = environment.Server + 'emailConfirmation/';
}
public emailConfirmation(token: string) {
return this.http.get<String>(this.actioUrl + token, { headers: this.headers });
}
public sendConfirmationEmail(email: string) {
2019-09-23 10:17:03 +02:00
return this.http.post<String>(this.actioUrl, email, { headers: this.headers });
}
}