Commit fbfb3494 authored by Eric Davis's avatar Eric Davis

Added Redmine::Info.issue to get links to specific issue numbers.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2776 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 211b13c9
......@@ -5,6 +5,11 @@ module Redmine
def url; 'http://www.redmine.org/' end
def help_url; 'http://www.redmine.org/guide' end
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
# Creates the url string to a specific Redmine issue
def issue(issue_id)
url + 'issues/' + issue_id.to_s
end
end
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment