Skip to content

Commit 358f94f

Browse files
store: Add getter for hasZoomToken
1 parent 205a2d1 commit 358f94f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/model/store.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,7 @@ class PerAccountStore extends PerAccountStoreBase with
562562
emoji: EmojiStoreImpl(core: core,
563563
allRealmEmoji: initialSnapshot.realmEmoji),
564564
userSettings: initialSnapshot.userSettings,
565+
hasZoomToken: initialSnapshot.hasZoomToken,
565566
pushDevices: PushDeviceManager(core: core),
566567
savedSnippets: SavedSnippetStoreImpl(core: core,
567568
savedSnippets: initialSnapshot.savedSnippets ?? []),
@@ -586,6 +587,7 @@ class PerAccountStore extends PerAccountStoreBase with
586587
required RealmStoreImpl realm,
587588
required EmojiStoreImpl emoji,
588589
required this.userSettings,
590+
required this.hasZoomToken,
589591
required this.pushDevices,
590592
required SavedSnippetStoreImpl savedSnippets,
591593
required this.typingNotifier,
@@ -658,6 +660,8 @@ class PerAccountStore extends PerAccountStoreBase with
658660

659661
final UserSettings userSettings;
660662

663+
bool hasZoomToken;
664+
661665
final PushDeviceManager pushDevices;
662666

663667
@override

0 commit comments

Comments
 (0)