budibase/packages/frontend-core/src/api/analytics.js

12 lines
242 B
JavaScript

// todo: audit
export const buildAnalyticsEndpoints = API => ({
/**
* Gets the current status of analytics for this environment
*/
getAnalyticsStatus: async () => {
return await API.get({
url: "/api/bbtel",
})
},
})