2
0
Files
bot/apps/builder/services/user/user.ts

10 lines
208 B
TypeScript
Raw Normal View History

2022-05-13 15:22:44 -07:00
import { User } from 'db'
import { sendRequest } from 'utils'
2021-12-06 15:48:50 +01:00
2021-12-27 15:59:32 +01:00
export const updateUser = async (id: string, user: User) =>
sendRequest({
url: `/api/users/${id}`,
method: 'PUT',
body: user,
})