mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-05-29 21:10:20 +02:00
feat(notifications_blacklist): speaking
This commit is contained in:
parent
e019ceee74
commit
af7d5c9f4f
@ -1061,6 +1061,7 @@
|
|||||||
"snap": "Snap",
|
"snap": "Snap",
|
||||||
"typing": "Typing",
|
"typing": "Typing",
|
||||||
"stories": "Stories",
|
"stories": "Stories",
|
||||||
|
"speaking": "Speaking",
|
||||||
"chat_reaction": "DM Reaction",
|
"chat_reaction": "DM Reaction",
|
||||||
"group_chat_reaction": "Group Reaction",
|
"group_chat_reaction": "Group Reaction",
|
||||||
"initiate_audio": "Incoming Audio Call",
|
"initiate_audio": "Incoming Audio Call",
|
||||||
|
@ -16,16 +16,17 @@ enum class NotificationType (
|
|||||||
SCREEN_RECORD("chat_screen_record", true, ContentType.STATUS_CONVERSATION_CAPTURE_RECORD),
|
SCREEN_RECORD("chat_screen_record", true, ContentType.STATUS_CONVERSATION_CAPTURE_RECORD),
|
||||||
CAMERA_ROLL_SAVE("camera_roll_save", true, ContentType.STATUS_SAVE_TO_CAMERA_ROLL),
|
CAMERA_ROLL_SAVE("camera_roll_save", true, ContentType.STATUS_SAVE_TO_CAMERA_ROLL),
|
||||||
SNAP_REPLAY("snap_replay", true, ContentType.STATUS),
|
SNAP_REPLAY("snap_replay", true, ContentType.STATUS),
|
||||||
SNAP("snap",true),
|
SNAP("snap", true),
|
||||||
CHAT("chat",true),
|
CHAT("chat", true),
|
||||||
CHAT_REPLY("chat_reply",true),
|
CHAT_REPLY("chat_reply", true),
|
||||||
TYPING("typing", true),
|
TYPING("typing", true),
|
||||||
STORIES("stories",true),
|
STORIES("stories", true),
|
||||||
|
SPEAKING("speaking", true),
|
||||||
DM_REACTION("chat_reaction", true, null,"snap_reaction", "voicenote_reaction"),
|
DM_REACTION("chat_reaction", true, null,"snap_reaction", "voicenote_reaction"),
|
||||||
GROUP_REACTION("group_chat_reaction", true, null,"group_snap_reaction", "group_voicenote_reaction"),
|
GROUP_REACTION("group_chat_reaction", true, null,"group_snap_reaction", "group_voicenote_reaction"),
|
||||||
INITIATE_AUDIO("initiate_audio",true),
|
INITIATE_AUDIO("initiate_audio", true),
|
||||||
ABANDON_AUDIO("abandon_audio", false, ContentType.STATUS_CALL_MISSED_AUDIO),
|
ABANDON_AUDIO("abandon_audio", false, ContentType.STATUS_CALL_MISSED_AUDIO),
|
||||||
INITIATE_VIDEO("initiate_video",true),
|
INITIATE_VIDEO("initiate_video", true),
|
||||||
ABANDON_VIDEO("abandon_video", false, ContentType.STATUS_CALL_MISSED_VIDEO);
|
ABANDON_VIDEO("abandon_video", false, ContentType.STATUS_CALL_MISSED_VIDEO);
|
||||||
|
|
||||||
fun isMatch(key: String): Boolean {
|
fun isMatch(key: String): Boolean {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user