bugzilla_service.rb 331 字节
Newer Older
1 2
# frozen_string_literal: true

3
class BugzillaService < IssueTrackerService
4
  validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
F
Felipe Artur 已提交
5

6
  def title
7
    'Bugzilla'
8 9
  end

10
  def description
11
    s_('IssueTracker|Bugzilla issue tracker')
12 13
  end

14
  def self.to_param
15 16 17
    'bugzilla'
  end
end