summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/mixins
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-03-12 08:41:22 +0000
committerPhil Hughes <me@iamphill.com>2019-03-12 08:41:22 +0000
commitaaee3fb4a608d291a49ff3194cf34053daf57d5e (patch)
tree77944f7cc8841a4b8213ef3cbe5a70ccee94485e /app/assets/javascripts/environments/mixins
parent3b82a97374f4a9613695890cb00922a2e284b0e6 (diff)
parent78f246a923a7569cfe837f8b09a76b23623941c1 (diff)
downloadgitlab-ce-aaee3fb4a608d291a49ff3194cf34053daf57d5e.tar.gz
Merge branch '10080-env-contaier' into 'master'
Removes ee differences for container.vue Closes gitlab-ee#10080 See merge request gitlab-org/gitlab-ce!25957
Diffstat (limited to 'app/assets/javascripts/environments/mixins')
-rw-r--r--app/assets/javascripts/environments/mixins/container_mixin.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/assets/javascripts/environments/mixins/container_mixin.js b/app/assets/javascripts/environments/mixins/container_mixin.js
new file mode 100644
index 00000000000..f2907c120f8
--- /dev/null
+++ b/app/assets/javascripts/environments/mixins/container_mixin.js
@@ -0,0 +1,29 @@
+export default {
+ props: {
+ canaryDeploymentFeatureId: {
+ type: String,
+ required: false,
+ default: null,
+ },
+ showCanaryDeploymentCallout: {
+ type: Boolean,
+ required: false,
+ default: false,
+ },
+ userCalloutsPath: {
+ type: String,
+ required: false,
+ default: null,
+ },
+ lockPromotionSvgPath: {
+ type: String,
+ required: false,
+ default: null,
+ },
+ helpCanaryDeploymentsPath: {
+ type: String,
+ required: false,
+ default: null,
+ },
+ },
+};