view .svn/pristine/0d/0d581e597497e894acf26342b5cf129e84f325db.svn-base @ 1237:1d5451bf82d7 redmine-2.2-integration

Added missing route to auto_completes#project_tags (AutoCompletes controller patched in redmine tags plugin)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 26 Mar 2013 15:11:27 +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