Commit 97a51817 authored by Phil Hughes's avatar Phil Hughes

Fixed error when updating groups

parent 638376c3
......@@ -21,7 +21,7 @@ class Projects::GroupLinksController < Projects::ApplicationController
def update
@group_link = @project.project_group_links.find(params[:id])
return render_403 unless can?(current_user, action_member_permission(:admin, @group_link.group), @group_link.group)
return render_403 unless can?(current_user, :admin_group, @group_link.group)
@group_link.update_attributes(group_link_params)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment