From cc8a3c2dc1f13eac92bec15c16e6b906300b06a6 Mon Sep 17 00:00:00 2001 From: Julius Gruber Date: Tue, 8 Oct 2019 16:48:19 +0200 Subject: [PATCH] Removed isStandalonePage property from AuthMethodModel class --- src/app/core/auth/models/auth-method.model.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/core/auth/models/auth-method.model.ts b/src/app/core/auth/models/auth-method.model.ts index 9aba68b2ef..7419769c5c 100644 --- a/src/app/core/auth/models/auth-method.model.ts +++ b/src/app/core/auth/models/auth-method.model.ts @@ -4,9 +4,8 @@ import { ShibbConstants } from '../../../+login-page/shibbolethTargetPage/const/ export class AuthMethodModel { authMethodType: AuthMethodType; location?: string; - isStandalonePage?: boolean; - constructor(authMethodName: string, location?: string, isStandAlonePage?: boolean) { + constructor(authMethodName: string, location?: string) { switch (authMethodName) { case 'ip': { this.authMethodType = AuthMethodType.Ip; @@ -29,7 +28,6 @@ export class AuthMethodModel { } case 'password': { this.authMethodType = AuthMethodType.Password; - this.isStandalonePage = true; break; }