2017-10-24 00:56:39 -04:00
|
|
|
// These need to match what is returned from the server
|
2017-11-06 09:48:44 -05:00
|
|
|
export const APPLICATION_NOT_INSTALLABLE = 'not_installable';
|
2017-10-24 00:56:39 -04:00
|
|
|
export const APPLICATION_INSTALLABLE = 'installable';
|
2017-11-06 09:48:44 -05:00
|
|
|
export const APPLICATION_SCHEDULED = 'scheduled';
|
2017-10-24 00:56:39 -04:00
|
|
|
export const APPLICATION_INSTALLING = 'installing';
|
|
|
|
export const APPLICATION_INSTALLED = 'installed';
|
2017-11-06 11:07:19 -05:00
|
|
|
export const APPLICATION_ERROR = 'errored';
|
2017-10-24 00:56:39 -04:00
|
|
|
|
|
|
|
// These are only used client-side
|
|
|
|
export const REQUEST_LOADING = 'request-loading';
|
|
|
|
export const REQUEST_SUCCESS = 'request-success';
|
|
|
|
export const REQUEST_FAILURE = 'request-failure';
|