refactor(auth.service): change observable type to unknown
Some checks failed
CI / Get Changed Files (pull_request) Successful in 29s
CI / Docker backend validation (pull_request) Successful in 13s
CI / eslint (pull_request) Successful in 34s
CI / oxlint (pull_request) Successful in 30s
CI / Checkstyle Main (pull_request) Successful in 54s
CI / Docker frontend validation (pull_request) Successful in 54s
CI / prettier (pull_request) Failing after 25s
CI / test-build (pull_request) Successful in 34s
Some checks failed
CI / Get Changed Files (pull_request) Successful in 29s
CI / Docker backend validation (pull_request) Successful in 13s
CI / eslint (pull_request) Successful in 34s
CI / oxlint (pull_request) Successful in 30s
CI / Checkstyle Main (pull_request) Successful in 54s
CI / Docker frontend validation (pull_request) Successful in 54s
CI / prettier (pull_request) Failing after 25s
CI / test-build (pull_request) Successful in 34s
This commit is contained in:
parent
decf2e21a3
commit
51984318e6
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ export class AuthService {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public verifyEmail(token: string): Observable<any> {
|
public verifyEmail(token: string): Observable<unknown> {
|
||||||
return this.http.post<any>(`${this.authUrl}/verify?token=${token}`, null);
|
return this.http.post<unknown>(`${this.authUrl}/verify?token=${token}`, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private setToken(token: string): void {
|
private setToken(token: string): void {
|
||||||
|
|
Reference in a new issue