1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +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()
}
async function updateRoles(data) {
async function save(data) {
try {
const res = await post(`/api/admin/users`, data)
const json = await res.json()
@ -57,8 +57,8 @@ export function createUsersStore() {
invite,
acceptInvite,
create,
updateRoles,
del,
save,
delete: del,
}
}