1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

fix user ping event

This commit is contained in:
Martin McKeaveney 2021-10-07 12:15:05 +01:00
parent f6a52ad92a
commit dea2c95d80

View file

@ -21,9 +21,12 @@ exports.endUserPing = async ctx => {
return
}
posthogClient.capture("budibase:end_user_ping", {
userId: ctx.user && ctx.user._id,
appId: ctx.appId,
posthogClient.capture({
event: "budibase:end_user_ping",
distinctId: ctx.user && ctx.user._id,
properties: {
appId: ctx.appId,
},
})
ctx.body = {