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) { if (user) {
analytics.activate().then(() => { analytics.activate().then(() => {
analytics.identify(user._id, user) analytics.identify(user._id, user)
// TODO: check if the user is a certain org size if (user.size === "100+" || user.size === "10000+") {
// analytics.showChat({ analytics.showChat({
// email: user.email, email: user.email,
// name: user.name, created_at: user.createdAt || Date.now(),
// user_id: user._id, name: user.name,
// tenant: user.tenantId user_id: user._id,
// }) tenant: user.tenantId
})
}
}) })
} }
} }