1
0
Fork 0
mirror of synced 2024-05-29 00:29:39 +12:00

error message fixes

This commit is contained in:
Martin McKeaveney 2021-10-19 16:52:55 +01:00
parent 6efe219cea
commit 2b05b2c17b
4 changed files with 854 additions and 19 deletions

View file

@ -39,7 +39,7 @@
await admin.init()
$goto("../portal")
} catch (err) {
notifications.error(`Failed to create admin user`)
notifications.error(`Failed to create admin user: ${err}`)
}
}

View file

@ -104,6 +104,7 @@
"mongodb": "3.6.3",
"mssql": "6.2.3",
"mysql": "2.18.1",
"mysql2": "^2.3.1",
"node-fetch": "2.6.0",
"open": "7.3.0",
"pg": "8.5.1",

View file

@ -21,6 +21,10 @@ exports.endUserPing = async ctx => {
return
}
posthogClient.identify({
distinctId: ctx.user && ctx.user._id,
properties: {},
})
posthogClient.capture({
event: "budibase:end_user_ping",
distinctId: ctx.user && ctx.user._id,

File diff suppressed because it is too large Load diff