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

fetch_group_path_availability.js « new « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d68ccd724d199b5bb4cbb2c17832785b1849fee (plain)
1
2
3
4
5
6
7
import axios from '~/lib/utils/axios_utils';

const rootUrl = gon.relative_url_root;

export default function fetchGroupPathAvailability(groupPath) {
  return axios.get(`${rootUrl}/users/${groupPath}/suggests`);
}