mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-19 10:02:04 +00:00
Redirect to referer to preserve pagination and filter.
git-svn-id: http://svn.redmine.org/redmine/trunk@15758 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
52fbcebb6d
commit
f435d1844d
@ -84,7 +84,7 @@ class GroupsController < ApplicationController
|
|||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
if @group.save
|
if @group.save
|
||||||
flash[:notice] = l(:notice_successful_update)
|
flash[:notice] = l(:notice_successful_update)
|
||||||
format.html { redirect_to(groups_path) }
|
format.html { redirect_to_referer_or(groups_path) }
|
||||||
format.api { render_api_ok }
|
format.api { render_api_ok }
|
||||||
else
|
else
|
||||||
format.html { render :action => "edit" }
|
format.html { render :action => "edit" }
|
||||||
@ -97,7 +97,7 @@ class GroupsController < ApplicationController
|
|||||||
@group.destroy
|
@group.destroy
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html { redirect_to(groups_path) }
|
format.html { redirect_to_referer_or(groups_path) }
|
||||||
format.api { render_api_ok }
|
format.api { render_api_ok }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user