Merge pull request #5684 from vector-im/sync-analytics-plan

Sync analytics plan
This commit is contained in:
Benoit Marty 2022-04-04 15:00:57 +02:00 committed by GitHub
commit 3b8ffcf8a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.
*/ */