diff --git a/vector/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt b/vector/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt index 2007f75fbc..4e4bfe53be 100644 --- a/vector/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt +++ b/vector/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt @@ -87,12 +87,30 @@ data class Interaction( */ WebAddExistingToSpaceDialogCreateRoomButton, + /** + * User clicked the create DM button in the home page of Element + * Web/Desktop. + */ + WebHomeCreateChatButton, + /** * User clicked the create room button in the home page of Element * Web/Desktop. */ WebHomeCreateRoomButton, + /** + * User clicked the explore rooms button in the home page of Element + * Web/Desktop. + */ + WebHomeExploreRoomsButton, + + /** + * User clicked the explore rooms button next to the search field at the + * top of the left panel in Element Web/Desktop. + */ + WebLeftPanelExploreRoomsButton, + /** * User interacted with pin to sidebar checkboxes in the quick settings * menu of Element Web/Desktop. @@ -189,6 +207,12 @@ data class Interaction( */ WebRoomHeaderContextMenuSettingsItem, + /** + * User clicked the create DM button in the + context menu of the room + * list header in Element Web/Desktop. + */ + WebRoomListHeaderPlusMenuCreateChatItem, + /** * User clicked the create room button in the + context menu of the room * list header in Element Web/Desktop. @@ -231,6 +255,12 @@ data class Interaction( */ WebRoomListRoomTileNotificationsMenu, + /** + * User clicked the create DM button in the + context menu of the rooms + * sublist in Element Web/Desktop. + */ + WebRoomListRoomsSublistPlusMenuCreateChatItem, + /** * User clicked the create room button in the + context menu of the * rooms sublist in Element Web/Desktop. diff --git a/vector/src/main/java/im/vector/app/features/analytics/plan/JoinedRoom.kt b/vector/src/main/java/im/vector/app/features/analytics/plan/JoinedRoom.kt index 0011d0e144..06cefa702e 100644 --- a/vector/src/main/java/im/vector/app/features/analytics/plan/JoinedRoom.kt +++ b/vector/src/main/java/im/vector/app/features/analytics/plan/JoinedRoom.kt @@ -49,11 +49,6 @@ data class JoinedRoom( */ Invite, - /** - * Room joined via space explore - */ - MobileExploreRooms, - /** * Room joined via link */