Skip to content

Commit 43550f7

Browse files
authored
Add properties for user identification analytics (#1059)
1 parent 58fdf5b commit 43550f7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

frontend/src/shared/monitoring/identify.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import config from '@/config';
44
export default function identify(user) {
55
window.analytics.identify(user.id, {
66
name: user.fullName,
7+
firstName: user.firstName,
8+
lastName: user.lastName,
79
email: user.email,
10+
createdAt: user.createdAt,
811
});
912

1013
if (config.env === 'production') {

0 commit comments

Comments
 (0)