TF-624 Implement get authentication info

This commit is contained in:
dab246
2022-06-07 19:59:01 +07:00
committed by Dat H. Pham
parent 5c66d3016f
commit abc7e3da9d
12 changed files with 106 additions and 0 deletions
@@ -5,6 +5,7 @@ class OIDCConstant {
static String get webOidcClientId => 'teammail-web';
static List<String> get oidcScope => ['openid', 'offline_access'];
static const keyAuthorityOidc = 'KEY_AUTHORITY_OIDC';
static const authResponseKey = "auth_info";
static String get clientId => BuildUtils.isWeb ? webOidcClientId : mobileOidcClientId;
}