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

registry_settings_app.vue « components « project « settings « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95af19e6d8515883afec6670e33066275de64a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import ContainerExpirationPolicy from './container_expiration_policy.vue';

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

<template>
  <section data-testid="registry-settings-app">
    <container-expiration-policy />
  </section>
</template>