debian-mirror-gitlab/app/assets/javascripts/jira_connect/api.js
2021-03-08 18:12:59 +05:30

33 lines
605 B
JavaScript

import axios from 'axios';
const getJwt = async () => {
return AP.context.getToken();
};
export const addSubscription = async (addPath, namespace) => {
const jwt = await getJwt();
return axios.post(addPath, {
jwt,
namespace_path: namespace,
});
};
export const removeSubscription = async (removePath) => {
const jwt = await getJwt();
return axios.delete(removePath, {
params: {
jwt,
},
});
};
export const fetchGroups = async (groupsPath, { page, perPage }) => {
return axios.get(groupsPath, {
params: {
page,
per_page: perPage,
},
});
};