Welcome to mirror list, hosted at ThFree Co, Russian Federation.

environments_table_mixin.js « mixins « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 208f1a7373db577c8ce1eeac8788cb01e9bce250 (plain)
1
2
3
4
5
6
7
8
9
10
export default {
  methods: {
    shouldShowCanaryCallout() {
      return false;
    },
    shouldRenderDeployBoard() {
      return false;
    },
  },
};