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: ea54733baa4df8449567df982e7a45a6e37d827d (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',
  });