summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/settings/repository/branch_rules/app.vue
blob: ada951f6867c6503ed46dd1c576194c3fa3a1403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
import { __ } from '~/locale';

export default {
  name: 'BranchRules',
  i18n: { heading: __('Branch') },
};
</script>

<template>
  <div>
    <strong>{{ $options.i18n.heading }}</strong>

    <!-- TODO - List branch rules (https://gitlab.com/gitlab-org/gitlab/-/issues/362217) -->
  </div>
</template>