1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/data/user-api.js

21 lines
515 B
JavaScript
Raw Normal View History

import { throwIfNotSuccess, headers } from './helper';
const URI = 'api/admin/user';
function fetchUser() {
return fetch(URI, { credentials: 'include' })
.then(throwIfNotSuccess)
.then(response => response.json());
}
function unsecureLogin(path, user) {
return fetch(path, { method: 'POST', credentials: 'include', headers, body: JSON.stringify(user) })
.then(throwIfNotSuccess)
.then(response => response.json());
}
export default {
fetchUser,
unsecureLogin,
};