2018-08-10 02:45:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-26 13:36:43 -04:00
|
|
|
class BugzillaService < IssueTrackerService
|
2018-06-01 07:43:53 -04:00
|
|
|
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
|
2016-09-29 17:11:32 -04:00
|
|
|
|
2019-06-26 10:03:57 -04:00
|
|
|
def default_title
|
|
|
|
'Bugzilla'
|
2016-06-26 13:36:43 -04:00
|
|
|
end
|
|
|
|
|
2019-06-26 10:03:57 -04:00
|
|
|
def default_description
|
|
|
|
s_('IssueTracker|Bugzilla issue tracker')
|
2016-06-26 13:36:43 -04:00
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2016-06-26 13:36:43 -04:00
|
|
|
'bugzilla'
|
|
|
|
end
|
|
|
|
end
|