bugzilla_service.rb 627 字节
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 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  prop_accessor :title, :description, :project_url, :issues_url, :new_issue_url

  def title
    if self.properties && self.properties['title'].present?
      self.properties['title']
    else
      'Bugzilla'
    end
  end

  def description
    if self.properties && self.properties['description'].present?
      self.properties['description']
    else
      'Bugzilla issue tracker'
    end
  end

24
  def self.to_param
25 26 27
    'bugzilla'
  end
end