gitlab-org--gitlab-foss/app/assets/javascripts/clusters/constants.js

11 lines
440 B
JavaScript
Raw Normal View History

// These need to match what is returned from the server
export const APPLICATION_INSTALLABLE = 'installable';
export const APPLICATION_INSTALLING = 'installing';
export const APPLICATION_INSTALLED = 'installed';
export const APPLICATION_ERROR = 'error';
// These are only used client-side
export const REQUEST_LOADING = 'request-loading';
export const REQUEST_SUCCESS = 'request-success';
export const REQUEST_FAILURE = 'request-failure';