diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-23 15:18:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-23 15:18:39 +0000 |
commit | e921d70e5331ddfbc8c6e95818a4abfa48748e0d (patch) | |
tree | 2de6ac2003a6b28de9fceac1245e64d1b7915628 /app/controllers | |
parent | 1528c719a425851dd8576773e30b4b64b9d4736e (diff) | |
download | redmine-e921d70e5331ddfbc8c6e95818a4abfa48748e0d.tar.gz redmine-e921d70e5331ddfbc8c6e95818a4abfa48748e0d.zip |
Moved routes helper methods to an helper.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11075 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/application_controller.rb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 019048c4f..d239b734c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -23,6 +23,8 @@ class Unauthorized < Exception; end class ApplicationController < ActionController::Base include Redmine::I18n include Redmine::Pagination + include RoutesHelper + helper :routes class_attribute :accept_api_auth_actions class_attribute :accept_rss_auth_actions @@ -335,16 +337,6 @@ class ApplicationController < ActionController::Base url end - # Returns the path to project issues or to the cross-project - # issue list if project is nil - def _issues_path(project, *args) - if project - project_issues_path(project, *args) - else - issues_path(*args) - end - end - def redirect_back_or_default(default) back_url = params[:back_url].to_s if back_url.present? |