feat(actions): manage friend list

This commit is contained in:
rhunk
2024-03-17 23:43:25 +01:00
parent 31c6bef10f
commit f53e2db68d
5 changed files with 286 additions and 17 deletions

View File

@@ -134,6 +134,10 @@
"name": "Clean Snapchat Cache",
"description": "Cleans the Snapchat Cache"
},
"manage_friend_list": {
"name": "Manage Friend List",
"description": "Import/export your friends list when backing up"
},
"export_chat_messages": {
"name": "Export Chat Messages",
"description": "Exports conversation messages into a JSON/HTML/TXT file"

View File

@@ -9,6 +9,7 @@ enum class EnumAction(
EXPORT_CHAT_MESSAGES("export_chat_messages"),
EXPORT_MEMORIES("export_memories"),
BULK_MESSAGING_ACTION("bulk_messaging_action"),
MANAGE_FRIEND_LIST("manage_friend_list"),
CLEAN_CACHE("clean_snapchat_cache", exitOnFinish = true);
companion object {