diff --git a/ui/app/AppLayouts/Chat/CommunityColumn.qml b/ui/app/AppLayouts/Chat/CommunityColumn.qml index 16184ad63f..f69d4f198b 100644 --- a/ui/app/AppLayouts/Chat/CommunityColumn.qml +++ b/ui/app/AppLayouts/Chat/CommunityColumn.qml @@ -76,6 +76,15 @@ Rectangle { onTriggered: openPopup(createChannelPopup, {communityId: chatsModel.communities.activeCommunity.id}) } + Action { + text: qsTr("Invite People") + enabled: chatsModel.communities.activeCommunity.canManageUsers + icon.source: "../../img/export.svg" + icon.width: 20 + icon.height: 20 + onTriggered: openPopup(inviteFriendsToCommunityPopup, {communityId: chatsModel.communities.activeCommunity.id}) + } + Action { //% "Leave community" text: qsTrId("leave-community")