TF-3278 Handle open app via deep link at MailboxDashboard screen
This commit is contained in:
@@ -17,6 +17,7 @@ extension KeychainSharingSessionExtension on KeychainSharingSession {
|
||||
tokenEndpoint: tokenEndpoint,
|
||||
oidcScopes: oidcScopes,
|
||||
mailboxIdsBlockNotification: mailboxIdsBlockNotification ?? this.mailboxIdsBlockNotification,
|
||||
isTWP: isTWP,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -27,6 +27,7 @@ class KeychainSharingSession with EquatableMixin {
|
||||
String? tokenEndpoint;
|
||||
List<String>? oidcScopes;
|
||||
List<MailboxId>? mailboxIdsBlockNotification;
|
||||
bool isTWP;
|
||||
|
||||
KeychainSharingSession({
|
||||
required this.accountId,
|
||||
@@ -40,6 +41,7 @@ class KeychainSharingSession with EquatableMixin {
|
||||
this.tokenEndpoint,
|
||||
this.oidcScopes,
|
||||
this.mailboxIdsBlockNotification,
|
||||
this.isTWP = false,
|
||||
});
|
||||
|
||||
factory KeychainSharingSession.fromJson(Map<String, dynamic> json) => _$KeychainSharingSessionFromJson(json);
|
||||
@@ -59,5 +61,6 @@ class KeychainSharingSession with EquatableMixin {
|
||||
tokenEndpoint,
|
||||
oidcScopes,
|
||||
mailboxIdsBlockNotification,
|
||||
isTWP,
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user