1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-13 00:28:49 +00:00
bramw_baserow/premium/web-frontend/modules/baserow_premium/services/admin/dashboard.js
2021-05-29 14:01:38 +00:00

15 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)
},
}
}