From eea76746b1ebb28e40e8e1adec4699eb368dfb6c Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Thu, 24 Oct 2019 22:48:51 +0200 Subject: [PATCH] remove test AuthMethodModel --- src/app/core/auth/auth.interceptor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/auth/auth.interceptor.ts b/src/app/core/auth/auth.interceptor.ts index 41b367eaa6..09ac357ac9 100644 --- a/src/app/core/auth/auth.interceptor.ts +++ b/src/app/core/auth/auth.interceptor.ts @@ -123,7 +123,7 @@ export class AuthInterceptor implements HttpInterceptor { } else { authMethodModels.push(new AuthMethodModel(AuthMethodType.Password)); } - authMethodModels.push(new AuthMethodModel(AuthMethodType.Shibboleth, 'location')); + return authMethodModels; }