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

add_namespace_modal.vue « add_namespace_modal « components « subscriptions « jira_connect « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e209a09b165ec6dc01dc02f7afdb154f9f9f6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<script>
import { GlModal } from '@gitlab/ui';
import { __, s__ } from '~/locale';
import { ADD_NAMESPACE_MODAL_ID } from '../../constants';
import GroupsList from './groups_list.vue';

export default {
  components: { GlModal, GroupsList },
  modal: {
    id: ADD_NAMESPACE_MODAL_ID,
    title: s__('Integrations|Link namespaces'),
    cancelProps: {
      text: __('Cancel'),
    },
  },
};
</script>
<template>
  <gl-modal
    :modal-id="$options.modal.id"
    :title="$options.modal.title"
    :action-cancel="$options.modal.cancelProps"
  >
    <groups-list />
  </gl-modal>
</template>