1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00
budibase/packages/server/src/api/controllers/analytics.js

8 lines
172 B
JavaScript
Raw Normal View History

const env = require("../../environment")
2021-05-03 19:31:09 +12:00
exports.isEnabled = async function (ctx) {
ctx.body = {
2021-09-22 07:39:56 +12:00
enabled: !env.SELF_HOSTED && env.ENABLE_ANALYTICS === "true",
}
}