debian-mirror-gitlab/app/models/project_services/bugzilla_service.rb
2020-08-09 17:44:08 +05:30

18 lines
331 B
Ruby

# frozen_string_literal: true
class BugzillaService < IssueTrackerService
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
def title
'Bugzilla'
end
def description
s_('IssueTracker|Bugzilla issue tracker')
end
def self.to_param
'bugzilla'
end
end