gitlab-org--gitlab-foss/app/assets/javascripts/ide/services/terminals.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
483 B
JavaScript
Raw Normal View History

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