Update ContextMenus.tsx

Add Create Invite button to server context menu
This commit is contained in:
Ryan Alexander 2021-08-16 08:00:53 +10:00 committed by GitHub
parent 8ba5c13cfc
commit 30448ce5a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -860,6 +860,15 @@ function ContextMenus(props: Props) {
} }
if (sid && server) { if (sid && server) {
if (server.channels[0] !== undefined)
generateAction(
{
action: "create_invite",
target: server.channels[0],
},
"create_invite",
);
if ( if (
serverPermissions & serverPermissions &
ServerPermission.ChangeNickname || ServerPermission.ChangeNickname ||