debian-mirror-gitlab/app/models/project_services/bugzilla_service.rb

18 lines
347 B
Ruby
Raw Normal View History

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
2019-09-30 21:07:59 +05:30
def default_title
'Bugzilla'
2016-08-24 12:49:21 +05:30
end
2019-09-30 21:07:59 +05:30
def default_description
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