Deployment 26.4.2023

This commit is contained in:
Nguyen Ha Khue
2023-04-26 18:28:36 +07:00
parent 1519a06bec
commit 8fb8041afd
13 changed files with 364 additions and 219 deletions
+4
View File
@@ -36,6 +36,10 @@ export class AuthService {
return this.httpClient.post<StringBoolObject>(this.baseUrl + `/check`, userDto);
}
checkIdentifiedCode(code: string) {
return this.httpClient.get<StringBoolObject>(this.baseUrl + `/check?code=${code}`);
}
checkEmailInDB(email: string) {
return this.httpClient.get<StringBoolObject>(this.baseUrl + `/check-email?email=${email}`)
}