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

bulk_imports_api.js « api « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d636cfdff0bf3cb23121065e0f1de53c671ef31d (plain)
1
2
3
4
5
6
7
import { buildApiUrl } from '~/api/api_utils';
import axios from '~/lib/utils/axios_utils';

const BULK_IMPORT_ENTITIES_PATH = '/api/:version/bulk_imports/entities';

export const getBulkImportsHistory = (params) =>
  axios.get(buildApiUrl(BULK_IMPORT_ENTITIES_PATH), { params });