Fixed issue with no authentication methods displayed

This commit is contained in:
Giuseppe Digilio
2020-03-13 18:28:24 +01:00
parent a6b2ed607a
commit 580346c2f7

View File

@@ -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[];
}