* MM-16430 refactor app entry point * iOS Extensions to use session token from KeyChain * Remove token from general credentials entity * Fix mattermost-managed.ios to return the cachedConfig * Migrate server based keychain for android push notifications * remove unneeded async * Remove unneeded android InitializationModule
12 lines
321 B
JavaScript
12 lines
321 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
class EphemeralStore {
|
|
constructor() {
|
|
this.appStarted = false;
|
|
this.appStartedFromPushNotification = false;
|
|
this.deviceToken = null;
|
|
}
|
|
}
|
|
|
|
export default new EphemeralStore();
|