9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
export default {
|
|
NOT_STARTED: 'not_started',
|
|
STARTED: 'started',
|
|
SUCCESS: 'success',
|
|
FAILURE: 'failure'
|
|
};
|