diff --git a/src/app/core/auth/auth.effects.ts b/src/app/core/auth/auth.effects.ts index 1f9c0df1bf..11fa0601c8 100644 --- a/src/app/core/auth/auth.effects.ts +++ b/src/app/core/auth/auth.effects.ts @@ -58,22 +58,6 @@ export class AuthEffects { }) ); -/* /!** - * Authenticate user. - * @method authenticate - *!/ - @Effect() - public shibbolethAuthenticate$: Observable = this.actions$.pipe( - ofType(AuthActionTypes.START_SHIBBOLETH_AUTHENTICATION), - switchMap((action: StartShibbolethAuthenticationAction) => { - return this.authService.shibbolethAuthenticate(action.payload.location).pipe( - take(1), - map((response: AuthStatus) => new AuthenticationSuccessAction(response.token)), - catchError((error) => observableOf(new AuthenticationErrorAction(error))) - ); - }) - );*/ - /** * Shib Login. * @method shibLogin diff --git a/src/app/shared/log-in/log-in.component.ts b/src/app/shared/log-in/log-in.component.ts index 81c52830a9..344a36ae55 100644 --- a/src/app/shared/log-in/log-in.component.ts +++ b/src/app/shared/log-in/log-in.component.ts @@ -20,7 +20,7 @@ export class LogInComponent implements OnInit, OnDestroy { private authMethods: AuthMethodModel[]; - private injectedAuthMethods: InjectedAuthMethodModel[]; + public injectedAuthMethods: InjectedAuthMethodModel[]; @Input() isStandalonePage: boolean;