* Added NOTICE.txt * Add creators to intro sentence * Removed react-addons-pure-render-mixin from NOTICE.txt since it's part of react * Copied fbjs keymirror into utils * Renamed deepFreezeAndThrowOnMutation to deep_freeze * Fixed merge conflict
21 lines
576 B
JavaScript
21 lines
576 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import keyMirror from 'service/utils/key_mirror';
|
|
|
|
export default keyMirror({
|
|
MY_PREFERENCES_REQUEST: null,
|
|
MY_PREFERENCES_SUCCESS: null,
|
|
MY_PREFERENCES_FAILURE: null,
|
|
|
|
SAVE_PREFERENCES_REQUEST: null,
|
|
SAVE_PREFERENCES_SUCCESS: null,
|
|
SAVE_PREFERENCES_FAILURE: null,
|
|
|
|
DELETE_PREFERENCES_REQUEST: null,
|
|
DELETE_PREFERENCES_SUCCESS: null,
|
|
DELETE_PREFERENCES_FAILURE: null,
|
|
|
|
RECEIVED_PREFERENCES: null,
|
|
DELETED_PREFERENCES: null
|
|
});
|