1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 05:40:09 +00:00
bramw_baserow/web-frontend/modules/database/services/airtable.js

11 lines
234 B
JavaScript

export default (client) => {
return {
create(workspaceId, shareURL) {
return client.post(`/jobs/`, {
type: 'airtable',
workspace_id: workspaceId,
airtable_share_url: shareURL,
})
},
}
}