mattermost-mobile/app/constants/storage.js
enahum d2f2678880 Reauthenticate from stored token when app is reloaded (#137)
* Reauthenticate from stored token when app is reloaded

* Address feedback
2016-12-15 13:17:26 -05:00

15 lines
399 B
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import keymirror from 'keymirror';
const StorageTypes = keymirror({
SAVE_TO_STORAGE: null,
SAVE_TO_STORAGE_ERROR: null,
LOAD_FROM_STORAGE: null,
LOAD_FROM_STORAGE_ERROR: null,
REMOVE_FROM_STORAGE: null,
REMOVE_FROM_STORAGE_ERROR: null
});
export default StorageTypes;