forked from Gitlink/forgeplus-react
11 lines
362 B
JavaScript
11 lines
362 B
JavaScript
import javaFetch from '../javaFetch';
|
|
|
|
const service = javaFetch();
|
|
export function getmaturityAnalyse(params) {
|
|
return service({
|
|
url: `https://testbd.trustie.net/maturityAnalyse/`,
|
|
method: 'get',
|
|
params: window.location.hostname === 'testforgeplus.trustie.net' ? { ...params, env_url: 'testforgeplus' } : params,
|
|
withCredentials: false
|
|
});
|
|
} |