diff --git a/native/components/community-actions-button.react.js b/native/components/community-actions-button.react.js --- a/native/components/community-actions-button.react.js +++ b/native/components/community-actions-button.react.js @@ -78,6 +78,17 @@ }); } + const canChangeRoles = threadHasPermission( + community, + threadPermissions.CHANGE_ROLE, + ); + if (canChangeRoles) { + result.push({ + label: 'Manage roles', + action: () => {}, + }); + } + if (result.length > 0) { return result; }