gitlab-org--gitlab-foss/app/assets/javascripts/pipeline_schedules/components/pipeline_schedules_form.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
207 B
Vue
Raw Normal View History

<script>
import { GlForm } from '@gitlab/ui';
export default {
components: {
GlForm,
},
inject: {
fullPath: {
default: '',
},
},
};
</script>
<template>
<gl-form />
</template>