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

merge_protections.vue « protections « components « branch_rules « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85f168af4a8b5f53adf38052526df81824035a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<script>
import { GlFormGroup, GlFormCheckbox } from '@gitlab/ui';
import { s__ } from '~/locale';

export const i18n = {
  allowedToMerge: s__('BranchRules|Allowed to merge'),
  requireApprovalTitle: s__('BranchRules|Require approval from code owners.'),
  requireApprovalHelpText: s__(
    'BranchRules|Reject code pushes that change files listed in the CODEOWNERS file.',
  ),
};

export default {
  name: 'BranchMergeProtections',
  i18n,
  components: {
    GlFormGroup,
    GlFormCheckbox,
  },
  props: {
    membersAllowedToMerge: {
      type: Array,
      required: true,
    },
    requireCodeOwnersApproval: {
      type: Boolean,
      required: true,
    },
  },
};
</script>

<template>
  <gl-form-group :label="$options.i18n.allowedToMerge">
    <!-- TODO: add multi-select-dropdown (https://gitlab.com/gitlab-org/gitlab/-/issues/362212) -->

    <gl-form-checkbox
      class="gl-mt-5"
      :checked="requireCodeOwnersApproval"
      @change="$emit('change-require-code-owners-approval', $event)"
    >
      <span>{{ $options.i18n.requireApprovalTitle }}</span>
      <template #help>{{ $options.i18n.requireApprovalHelpText }}</template>
    </gl-form-checkbox>
  </gl-form-group>
</template>