chore(ChatContextMenuView): clean up unused leaveGroup signal

This commit is contained in:
Jonathan Rainville 2023-11-16 11:48:09 -05:00
parent 0916d1db2c
commit db49c5995f
3 changed files with 0 additions and 7 deletions

View File

@ -235,9 +235,6 @@ Item {
onRequestMoreMessages: {
messageStore.requestMoreMessages();
}
onLeaveGroup: {
chatContentModule.leaveChat();
}
onUpdateGroupChatDetails: {
root.rootStore.chatCommunitySectionModule.updateGroupChatDetails(
chatId,

View File

@ -205,9 +205,6 @@ Item {
onDisplayProfilePopup: {
Global.openProfilePopup(publicKey)
}
onLeaveGroup: {
chatSectionModule.leaveChat("", chatId, true);
}
onUpdateGroupChatDetails: {
chatSectionModule.updateGroupChatDetails(
chatId,

View File

@ -37,7 +37,6 @@ StatusMenu {
signal downloadMessages(string file)
signal deleteCommunityChat(string chatId)
signal leaveChat(string chatId)
signal leaveGroup(string chatId)
signal updateGroupChatDetails(string chatId, string groupName, string groupColor, string groupImage)
signal createCommunityChannel(string chatId, string newName, string newDescription, string newEmoji, string newColor)