1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00
This commit is contained in:
Martin McKeaveney 2021-09-21 20:47:04 +01:00
parent b7ff1a2464
commit 45981c62ef
2 changed files with 10 additions and 10 deletions

View file

@ -21,7 +21,7 @@ export default class PosthogClient {
}
/**
* Set the posthog context to the current user
* Set the posthog context to the current user
* @param {String} id - unique user id
*/
identify(id) {
@ -70,7 +70,7 @@ export default class PosthogClient {
}
/**
* Reset posthog user back to initial state on logout.
* Reset posthog user back to initial state on logout.
*/
logout() {
if (!this.initialised) return

View file

@ -13,20 +13,20 @@ export default class SentryClient {
}
}
/**
* Capture an exception and send it to sentry.
* @param {Error} err - JS error object
*/
/**
* Capture an exception and send it to sentry.
* @param {Error} err - JS error object
*/
captureException(err) {
if (!this.initalised) return
Sentry.captureException(err)
}
/**
* Identify user in sentry.
* @param {String} id - Unique user id
*/
/**
* Identify user in sentry.
* @param {String} id - Unique user id
*/
identify(id) {
if (!this.initalised) return