Skip to content
Snippets Groups Projects
Commit 07468be5 authored by Phil Hughes's avatar Phil Hughes
Browse files

Fixed error when updating groups

parent 4c832f2a
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
@@ -21,7 +21,7 @@ class Projects::GroupLinksController < Projects::ApplicationController
Loading
@@ -21,7 +21,7 @@ class Projects::GroupLinksController < Projects::ApplicationController
   
def update def update
@group_link = @project.project_group_links.find(params[:id]) @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) @group_link.update_attributes(group_link_params)
end end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment