summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/constants.js
blob: 3f202435716b9e4e4008f6d4a8c1af45e53187a3 (plain)
1
2
3
4
5
6
7
8
9
10
// 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';