Merge remote-tracking branch 'dspace/main' into accessibility-settings-main

# Conflicts:
#	config/config.example.yml
#	src/config/app-config.interface.ts
#	src/config/default-app-config.ts
#	src/environments/environment.test.ts
This commit is contained in:
Andreas Awouters
2025-04-16 10:56:51 +02:00
420 changed files with 169383 additions and 22061 deletions

View File

@@ -3,6 +3,7 @@ import {
of as observableOf,
} from 'rxjs';
import { RetrieveAuthMethodsAction } from '../../core/auth/auth.actions';
import { AuthMethod } from '../../core/auth/models/auth.method';
import { AuthMethodType } from '../../core/auth/models/auth.method-type';
import { AuthStatus } from '../../core/auth/models/auth-status.model';
@@ -132,6 +133,7 @@ export class AuthServiceStub {
checkAuthenticationCookie() {
return;
}
setExternalAuthStatus(externalCookie: boolean) {
this._isExternalAuth = externalCookie;
}
@@ -183,4 +185,16 @@ export class AuthServiceStub {
clearRedirectUrl() {
return;
}
public replaceToken(token: AuthTokenInfo) {
return token;
}
getRetrieveAuthMethodsAction(authStatus: AuthStatus): RetrieveAuthMethodsAction {
return;
}
public getExternalServerRedirectUrl(redirectRoute: string, location: string) {
return;
}
}