Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interaction type for making room list rooms as unread or favourite #88

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion schemas/Interaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
{"const": "MobileAllChatsFilterFavourites", "description": "User tapped the Favourites filter in the All Chats filter tab."},
{"const": "MobileAllChatsFilterUnreads", "description": "User tapped the Unreads filter in the All Chats filter tab."},
{"const": "MobileAllChatsFilterPeople", "description": "User tapped the People filter in the All Chats filter tab."},
{"const": "MobileSpaceCreationValidated", "description": "User validated the creation of a new space."}
{"const": "MobileSpaceCreationValidated", "description": "User validated the creation of a new space."},
{"const": "MobileRoomListRoomContextMenuUnreadToggle", "description": "User adjusted their unread rooms using the context menu on a room in the room list."}
]
},
"index": {
Expand Down
6 changes: 6 additions & 0 deletions types/kotlin2/Interaction.kt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ data class Interaction(
*/
MobileRoomLeave,

/**
* User adjusted their unread rooms using the context menu on a room in
* the room list.
*/
MobileRoomListRoomContextMenuUnreadToggle,

/**
* User tapped on Threads button on Room screen.
*/
Expand Down
2 changes: 2 additions & 0 deletions types/swift/Interaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ extension AnalyticsEvent {
case MobileRoomAddHome
/// User tapped on Leave Room button on Room Details screen.
case MobileRoomLeave
/// User adjusted their unread rooms using the context menu on a room in the room list.
case MobileRoomListRoomContextMenuUnreadToggle
/// User tapped on Threads button on Room screen.
case MobileRoomThreadListButton
/// User tapped on a thread summary item on Room screen.
Expand Down
Loading