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 for enabling/disabling optimised media uploads. #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ data class Interaction(
*/
MobileRoomThreadSummaryItem("MobileRoomThreadSummaryItem"),

/**
* User disabled the Optimised Media Uploads setting.
*/
MobileSettingsOptimizeMediaUploadsDisabled("MobileSettingsOptimizeMediaUploadsDisabled"),

/**
* User enabled the Optimised Media Uploads setting.
*/
MobileSettingsOptimizeMediaUploadsEnabled("MobileSettingsOptimizeMediaUploadsEnabled"),

/**
* User validated the creation of a new space.
*/
Expand Down
4 changes: 3 additions & 1 deletion schemas/Interaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@
{"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": "MobileRoomListRoomContextMenuUnreadToggle", "description": "User adjusted their unread rooms using the context menu on a room in the room list."},
{"const": "MobileRoomListRoomContextMenuFavouriteToggle", "description": "User adjusted their favourite rooms using the context menu on a room in the room list."}
{"const": "MobileRoomListRoomContextMenuFavouriteToggle", "description": "User adjusted their favourite rooms using the context menu on a room in the room list."},
{"const": "MobileSettingsOptimizeMediaUploadsEnabled", "description": "User enabled the Optimised Media Uploads setting."},
{"const": "MobileSettingsOptimizeMediaUploadsDisabled", "description": "User disabled the Optimised Media Uploads setting."}
]
},
"index": {
Expand Down
4 changes: 4 additions & 0 deletions types/swift/Interaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ extension AnalyticsEvent {
case MobileRoomThreadListButton = "MobileRoomThreadListButton"
/// User tapped on a thread summary item on Room screen.
case MobileRoomThreadSummaryItem = "MobileRoomThreadSummaryItem"
/// User disabled the Optimised Media Uploads setting.
case MobileSettingsOptimizeMediaUploadsDisabled = "MobileSettingsOptimizeMediaUploadsDisabled"
/// User enabled the Optimised Media Uploads setting.
case MobileSettingsOptimizeMediaUploadsEnabled = "MobileSettingsOptimizeMediaUploadsEnabled"
/// User validated the creation of a new space.
case MobileSpaceCreationValidated = "MobileSpaceCreationValidated"
/// User tapped on the filter button on ThreadList screen.
Expand Down
Loading