1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #3319 from Budibase/fix/intercom-events

track pageviews in PH, add job role and company size into intercom
This commit is contained in:
Martin McKeaveney 2021-11-11 12:24:47 +01:00 committed by GitHub
commit 8027ab6089
2 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ export default class PosthogClient {
posthog.init(this.token, { posthog.init(this.token, {
autocapture: false, autocapture: false,
capture_pageview: false, capture_pageview: true,
api_host: this.url, api_host: this.url,
}) })
posthog.set_config({ persistence: "cookie" }) posthog.set_config({ persistence: "cookie" })

View file

@ -57,11 +57,11 @@ export function createAuthStore() {
analytics.showChat({ analytics.showChat({
email: user.email, email: user.email,
created_at: (user.createdAt || Date.now()) / 1000, created_at: (user.createdAt || Date.now()) / 1000,
name: user.name, name: user.account?.name,
user_id: user._id, user_id: user._id,
tenant: user.tenantId, tenant: user.tenantId,
"Company size": user.size, "Company size": user.account?.size,
"Job role": user.profession, "Job role": user.account?.profession,
}) })
}) })
} }