From 8ab9215ea8df2216ccfacf272804811b05ab82c8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 11 Dec 2012 19:39:47 +0000 Subject: Use named routes in controllers. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10983 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/trackers_controller.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/controllers/trackers_controller.rb') diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb index 938e6e2bc..602ea5288 100644 --- a/app/controllers/trackers_controller.rb +++ b/app/controllers/trackers_controller.rb @@ -48,7 +48,7 @@ class TrackersController < ApplicationController @tracker.workflow_rules.copy(copy_from) end flash[:notice] = l(:notice_successful_create) - redirect_to :action => 'index' + redirect_to trackers_path return end new @@ -64,7 +64,7 @@ class TrackersController < ApplicationController @tracker = Tracker.find(params[:id]) if @tracker.update_attributes(params[:tracker]) flash[:notice] = l(:notice_successful_update) - redirect_to :action => 'index' + redirect_to trackers_path return end edit @@ -78,7 +78,7 @@ class TrackersController < ApplicationController else @tracker.destroy end - redirect_to :action => 'index' + redirect_to trackers_path end def fields @@ -92,7 +92,7 @@ class TrackersController < ApplicationController end end flash[:notice] = l(:notice_successful_update) - redirect_to :action => 'fields' + redirect_to fields_trackers_path return end @trackers = Tracker.sorted.all -- cgit v1.2.3