[CST-14902][CST-15073][CST-15074] Adds ORCID login flow with private email

This commit is contained in:
Alisa Ismailati
2023-09-25 18:10:26 +02:00
committed by Vincenzo Mecca
parent fca5700012
commit 214a77a65c
89 changed files with 3452 additions and 276 deletions

View File

@@ -1,8 +1,5 @@
/* eslint-disable no-empty, @typescript-eslint/no-empty-function */
import {
Observable,
of as observableOf,
} from 'rxjs';
import { Observable, of as observableOf, } from 'rxjs';
export class AuthServiceMock {
public checksAuthenticationToken() {
@@ -29,4 +26,16 @@ export class AuthServiceMock {
public isUserIdle(): Observable<boolean> {
return observableOf(false);
}
public getImpersonateID(): string {
return null;
}
public getRedirectUrl(): Observable<string> {
return;
}
public getExternalServerRedirectUrl(): string {
return;
}
}