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

terminals.js « services « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17b4329037ddfacfcbc5562383ea9628c206fbbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import axios from '~/lib/utils/axios_utils';

export const baseUrl = projectPath => `/${projectPath}/ide_terminals`;

export const checkConfig = (projectPath, branch) =>
  axios.post(`${baseUrl(projectPath)}/check_config`, {
    branch,
    format: 'json',
  });

export const create = (projectPath, branch) =>
  axios.post(baseUrl(projectPath), {
    branch,
    format: 'json',
  });