Files
jupyterhub/jsx/src/util/jhapiUtil.js
2021-04-05 16:51:22 -04:00

11 lines
253 B
JavaScript

export const jhapiRequest = (endpoint, method, data) => {
return fetch("/hub/api" + endpoint, {
method: method,
json: true,
headers: {
"Content-Type": "application/json",
},
body: data ? JSON.stringify(data) : null,
});
};