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

15 lines
382 B
JavaScript

export default (client) => {
return {
fetchAll() {
return client.get('/templates/')
},
install(workspaceId, templateId) {
return client.post(`/templates/install/${workspaceId}/${templateId}/`)
},
asyncInstall(workspaceId, templateId) {
return client.post(
`/templates/install/${workspaceId}/${templateId}/async/`
)
},
}
}