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/helpers/routes_helper.rb | |
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/helpers/routes_helper.rb')
-rw-r--r-- | app/helpers/routes_helper.rb | 31 |
1 files changed, 31 insertions, 0 deletions
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 |