summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/services/terminals.js
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',
  });