mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
export default (client) => {
|
|
return {
|
|
type(tableId, fieldName, formula) {
|
|
return client.post(`/database/formula/${tableId}/type/`, {
|
|
formula,
|
|
name: fieldName,
|
|
})
|
|
},
|
|
}
|
|
}
|