summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/board_configuration_options.vue
blob: b8ee930a8c942f83285143864fd7ae6685a92319 (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
<script>
import { GlFormCheckbox } from '@gitlab/ui';

export default {
  components: {
    GlFormCheckbox,
  },
  props: {
    hideBacklogList: {
      type: Boolean,
      required: true,
    },
    hideClosedList: {
      type: Boolean,
      required: true,
    },
  },
};
</script>

<template>
  <div class="gl-mb-5">
    <label class="label-bold gl-font-lg" for="board-new-name">
      {{ __('List options') }}
    </label>
    <p class="text-secondary gl-mb-3">
      {{ __('Configure which lists are shown for anyone who visits this board') }}
    </p>
    <gl-form-checkbox
      :checked="!hideBacklogList"
      data-testid="backlog-list-checkbox"
      @change="$emit('update:hideBacklogList', !hideBacklogList)"
      >{{ __('Show the Open list') }}
    </gl-form-checkbox>
    <gl-form-checkbox
      :checked="!hideClosedList"
      data-testid="closed-list-checkbox"
      @change="$emit('update:hideClosedList', !hideClosedList)"
      >{{ __('Show the Closed list') }}
    </gl-form-checkbox>
  </div>
</template>