mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-07 06:09:17 +00:00
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
export default (client) => {
|
|
return {
|
|
update(viewId, values) {
|
|
return client.patch(`/database/view/${viewId}/premium`, values)
|
|
},
|
|
}
|
|
}
|