mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 05:40:09 +00:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
export default (client) => {
|
|
return {
|
|
type(tableId, fieldName, formula) {
|
|
return client.post(`/database/formula/${tableId}/type/`, {
|
|
formula,
|
|
name: fieldName,
|
|
})
|
|
},
|
|
}
|
|
}
|