TF-4145 Implement get oidc user_info from endpoint of oidc configuration
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
|
||||
import 'package:model/oidc/response/oidc_user_info.dart';
|
||||
|
||||
class TwakeAppManager {
|
||||
bool _hasComposer = false;
|
||||
bool _isExecutingBeforeReconnect = false;
|
||||
OidcUserInfo? _oidcUserInfo;
|
||||
|
||||
void setHasComposer(bool value) => _hasComposer = value;
|
||||
|
||||
@@ -10,4 +13,10 @@ class TwakeAppManager {
|
||||
void setExecutingBeforeReconnect(bool value) => _isExecutingBeforeReconnect = value;
|
||||
|
||||
bool get isExecutingBeforeReconnect => _isExecutingBeforeReconnect;
|
||||
|
||||
void setOidcUserInfo(OidcUserInfo value) => _oidcUserInfo = value;
|
||||
|
||||
void clearOidcUserInfo() => _oidcUserInfo = null;
|
||||
|
||||
OidcUserInfo? get oidcUserInfo => _oidcUserInfo;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user