2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
class BugzillaService < 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
|
|
|
'Bugzilla'
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def description
|
2019-09-30 21:07:59 +05:30
|
|
|
s_('IssueTracker|Bugzilla issue tracker')
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.to_param
|
2016-08-24 12:49:21 +05:30
|
|
|
'bugzilla'
|
|
|
|
end
|
|
|
|
end
|