budibase/packages/client/src/api/attachments.js

13 lines
223 B
JavaScript
Raw Normal View History

import api from "./api"
/**
* Uploads an attachment to the server.
*/
export const uploadAttachment = async data => {
return await api.post({
url: "/api/attachments/upload",
body: data,
json: false,
})
}