Group admins can't leave by clicking 'member' button

This commit is contained in:
Fosco Marotto 2021-01-27 12:16:49 -05:00
parent 3d06e94595
commit 2b99918b26
1 changed files with 2 additions and 2 deletions

View File

@ -47,12 +47,12 @@ class Api::V1::Groups::AccountsController < Api::BaseController
@join_request.destroy_all
else
authorize @group, :leave?
GroupAccount.where(group: @group, account_id: current_account.id).destroy_all
GroupAccount.where(group: @group, account_id: current_account.id, role: nil).destroy_all
end
render json: @group, serializer: REST::GroupRelationshipSerializer, relationships: relationships
end
private
def relationships