debian-mirror-gitlab/app/assets/javascripts/environments/mixins/container_mixin.js

35 lines
643 B
JavaScript
Raw Normal View History

2019-07-07 11:18:12 +05:30
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,
},
2019-09-30 21:07:59 +05:30
deployBoardsHelpPath: {
type: String,
required: false,
default: '',
},
2019-07-07 11:18:12 +05:30
},
};