summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/controllers/application_controller.rb12
-rw-r--r--app/helpers/routes_helper.rb31
2 files changed, 33 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?
diff --git a/app/helpers/routes_helper.rb b/app/helpers/routes_helper.rb
new file mode 100644
index 000000000..5a517aae7
--- /dev/null
+++ b/app/helpers/routes_helper.rb
@@ -0,0 +1,31 @@
+# encoding: utf-8
+#
+# Redmine - project management software
+# Copyright (C) 2006-2012 Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+module RoutesHelper
+
+ # 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
+end