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

10 lines
210 B
TypeScript
Raw Normal View History

2021-12-08 07:08:13 +01:00
import { User } from 'db'
2021-12-27 15:59:32 +01:00
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,
})