summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/constants.js
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-11-06 15:48:44 +0100
committerKamil Trzcinski <ayufan@ayufan.eu>2017-11-06 15:52:17 +0100
commitf3a3566edc8fe24337b9df163f4699785061bb38 (patch)
tree9f4c8c5ab31a0e789f2fd796d73642ccad86383c /app/assets/javascripts/clusters/constants.js
parent001de85e7c6f86423aca0d245fdc83c57b374630 (diff)
downloadgitlab-ce-f3a3566edc8fe24337b9df163f4699785061bb38.tar.gz
Add support for not_installable/scheduled and to not show created banner
Diffstat (limited to 'app/assets/javascripts/clusters/constants.js')
-rw-r--r--app/assets/javascripts/clusters/constants.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/clusters/constants.js b/app/assets/javascripts/clusters/constants.js
index 3f202435716..f1894b173b9 100644
--- a/app/assets/javascripts/clusters/constants.js
+++ b/app/assets/javascripts/clusters/constants.js
@@ -1,5 +1,7 @@
// 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 = 'error';