account for user size in intercom

This commit is contained in:
Martin McKeaveney 2021-09-22 09:38:32 +01:00
parent 1790d13bb5
commit 9196ae8edb
1 changed files with 9 additions and 7 deletions

View File

@ -54,13 +54,15 @@ export function createAuthStore() {
if (user) {
analytics.activate().then(() => {
analytics.identify(user._id, user)
// TODO: check if the user is a certain org size
// analytics.showChat({
// email: user.email,
// name: user.name,
// user_id: user._id,
// tenant: user.tenantId
// })
if (user.size === "100+" || user.size === "10000+") {
analytics.showChat({
email: user.email,
created_at: user.createdAt || Date.now(),
name: user.name,
user_id: user._id,
tenant: user.tenantId
})
}
})
}
}