mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-13 00:28:49 +00:00
15 lines
273 B
JavaScript
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)
|
|
},
|
|
}
|
|
}
|