mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 02:24:08 +00:00
11 lines
253 B
JavaScript
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,
|
|
});
|
|
};
|