2018-03-17 18:26:18 +05:30
|
|
|
// These need to match what is returned from the server
|
|
|
|
export const APPLICATION_NOT_INSTALLABLE = 'not_installable';
|
|
|
|
export const APPLICATION_INSTALLABLE = 'installable';
|
|
|
|
export const APPLICATION_SCHEDULED = 'scheduled';
|
|
|
|
export const APPLICATION_INSTALLING = 'installing';
|
|
|
|
export const APPLICATION_INSTALLED = 'installed';
|
|
|
|
export const APPLICATION_ERROR = 'errored';
|
|
|
|
|
|
|
|
// These are only used client-side
|
|
|
|
export const REQUEST_LOADING = 'request-loading';
|
|
|
|
export const REQUEST_SUCCESS = 'request-success';
|
|
|
|
export const REQUEST_FAILURE = 'request-failure';
|
2018-03-27 19:54:05 +05:30
|
|
|
export const INGRESS = 'ingress';
|