Mercurial > hg > soundsoftware-site
view .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1625:808a40a7cac7 live
Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 13:48:00 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
module Redmine module Info class << self def app_name; 'Redmine' end 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