remove invitee field from analytics

This commit is contained in:
Phillip Thelen
2025-09-18 11:22:41 +02:00
parent 108bd59296
commit c3ef26b2f3
-3
View File
@@ -147,7 +147,6 @@ async function inviteByUUID (uuid, group, inviter, req, res) {
uuid: inviter._id,
hitType: 'event',
category: 'behavior',
invitee: uuid,
groupId: group._id,
groupType: group.type,
headers: req.headers,
@@ -212,7 +211,6 @@ async function inviteByEmail (invite, group, inviter, req, res) {
uuid: inviter._id,
hitType: 'event',
category: 'behavior',
invitee: 'email',
groupId: group._id,
groupType: group.type,
headers: req.headers,
@@ -250,7 +248,6 @@ async function inviteByUserName (username, group, inviter, req, res) {
uuid: inviter._id,
hitType: 'event',
category: 'behavior',
invitee: userToInvite._id,
groupId: group._id,
groupType: group.type,
headers: req.headers,