From 580346c2f7d6b4b90077440c7568c37c03d4dba7 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Fri, 13 Mar 2020 18:28:24 +0100 Subject: [PATCH] Fixed issue with no authentication methods displayed --- src/app/core/auth/models/auth-status.model.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/core/auth/models/auth-status.model.ts b/src/app/core/auth/models/auth-status.model.ts index 9daeef34f8..197c025407 100644 --- a/src/app/core/auth/models/auth-status.model.ts +++ b/src/app/core/auth/models/auth-status.model.ts @@ -80,11 +80,13 @@ export class AuthStatus implements CacheableObject { * Authentication error if there was one for this status */ // TODO should be refactored to use the RemoteData error + @autoserialize error?: AuthError; /** * All authentication methods enabled at the backend */ + @autoserialize authMethods: AuthMethod[]; }