Sync analytics plan

This commit is contained in:
bmarty 2022-04-04 00:02:56 +00:00 committed by GitHub
parent 3aac59a5ae
commit 921b562fd0
2 changed files with 35 additions and 0 deletions

View File

@ -49,6 +49,16 @@ data class JoinedRoom(
*/ */
Invite, Invite,
/**
* Room joined via space explore
*/
MobileExploreRooms,
/**
* Room joined via link
*/
MobilePermalink,
/** /**
* Room joined via a push/desktop notification. * Room joined via a push/desktop notification.
*/ */

View File

@ -63,6 +63,11 @@ data class ViewRoom(
*/ */
MessageUser, MessageUser,
/**
* Room accessed via space explore
*/
MobileExploreRooms,
/** /**
* Room switched due to user interacting with a file search result. * Room switched due to user interacting with a file search result.
*/ */
@ -73,12 +78,27 @@ data class ViewRoom(
*/ */
MobileInCall, MobileInCall,
/**
* Room accessed during external sharing
*/
MobileLinkShare,
/**
* Room accessed via link
*/
MobilePermalink,
/** /**
* Room accessed via interacting with direct chat item in the room * Room accessed via interacting with direct chat item in the room
* contact detail screen. * contact detail screen.
*/ */
MobileRoomMemberDetail, MobileRoomMemberDetail,
/**
* Room accessed via preview
*/
MobileRoomPreview,
/** /**
* Room switched due to user interacting with a room search result. * Room switched due to user interacting with a room search result.
*/ */
@ -96,6 +116,11 @@ data class ViewRoom(
*/ */
MobileSpaceMemberDetail, MobileSpaceMemberDetail,
/**
* Room accessed via space members list
*/
MobileSpaceMembers,
/** /**
* Space accessed via interacting with the space menu. * Space accessed via interacting with the space menu.
*/ */