Merge branch 'xanf/gitlab-ce-transfer-disables-js' into 'master'

Resolve "Failing group transfer disables expandable sections"

Closes #45511

See merge request gitlab-org/gitlab-ce!26837
This commit is contained in:
Sean McGivern 2019-04-04 15:13:42 +00:00
commit c7f918aa69
3 changed files with 8 additions and 3 deletions

View file

@ -124,8 +124,8 @@ class GroupsController < Groups::ApplicationController
flash[:notice] = "Group '#{@group.name}' was successfully transferred."
redirect_to group_path(@group)
else
flash.now[:alert] = service.error
render :edit
flash[:alert] = service.error
redirect_to edit_group_path(@group)
end
end
# rubocop: enable CodeReuse/ActiveRecord

View file

@ -0,0 +1,5 @@
---
title: Group transfer now properly redirects to edit on failure
merge_request: 26837
author:
type: fixed

View file

@ -616,7 +616,7 @@ describe GroupsController do
end
it 'should redirect to the current path' do
expect(response).to render_template(:edit)
expect(response).to redirect_to(edit_group_path(group))
end
end