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: 99121948196cdea65f38c9491afff38cac2758b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import axios from '~/lib/utils/axios_utils';
import { joinPaths } from '~/lib/utils/url_utility';

export const baseUrl = (projectPath) =>
  joinPaths(gon.relative_url_root || '', `/${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',
  });