2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class RedmineService < IssueTrackerService
|
2018-11-08 19:23:39 +05:30
|
|
|
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def title
|
2019-09-30 21:07:59 +05:30
|
|
|
'Redmine'
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def description
|
2019-09-30 21:07:59 +05:30
|
|
|
s_('IssueTracker|Redmine issue tracker')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.to_param
|
2015-04-26 12:48:37 +05:30
|
|
|
'redmine'
|
|
|
|
end
|
|
|
|
end
|