1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-09-19 11:07:47 +00:00
bramw_baserow/premium/web-frontend/modules/baserow_premium/services/admin/dashboard.js
2021-05-29 14:01:38 +00:00

16 lines
273 B
JavaScript

export default (client) => {
return {
dashboard(timezone = null) {
const config = {
params: {},
}
if (timezone !== null) {
config.params.timezone = timezone
}
return client.get(`/admin/dashboard/`, config)
},
}
}