1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

update function names on users store

This commit is contained in:
Keviin Åberg Kultalahti 2021-05-19 11:51:54 +02:00
parent 22db93394c
commit 538b51b660

View file

@ -40,7 +40,7 @@ export function createUsersStore() {
return await response.json() return await response.json()
} }
async function updateRoles(data) { async function save(data) {
try { try {
const res = await post(`/api/admin/users`, data) const res = await post(`/api/admin/users`, data)
const json = await res.json() const json = await res.json()
@ -57,8 +57,8 @@ export function createUsersStore() {
invite, invite,
acceptInvite, acceptInvite,
create, create,
updateRoles, save,
del, delete: del,
} }
} }