2020-06-23 00:09:42 +05:30
|
|
|
import axios from '~/lib/utils/axios_utils';
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
export const baseUrl = (projectPath) => `/${projectPath}/ide_terminals`;
|
2020-06-23 00:09:42 +05:30
|
|
|
|
|
|
|
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',
|
|
|
|
});
|