1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

update function names on users store

This commit is contained in:
Keviin Åberg Kultalahti 2021-05-19 11:51:54 +02:00
parent 3080d0a8c4
commit cdc7e604e5

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,
} }
} }