summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/security_configuration/components/app.vue
blob: 513a7353d28c530a8b7733a61eb22d6d1ec00081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
import ConfigurationTable from './configuration_table.vue';

export default {
  components: {
    ConfigurationTable,
  },
};
</script>

<template>
  <article>
    <header>
      <h4 class="gl-my-5">
        {{ __('Security Configuration') }}
      </h4>
      <h5 class="gl-font-lg gl-mt-7">
        {{ s__('SecurityConfiguration|Testing & Compliance') }}
      </h5>
    </header>
    <configuration-table />
  </article>
</template>