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

11 lines
227 B
JavaScript
Raw Normal View History

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