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

app.vue « branch_rules « repository « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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>