2016-06-26 13:36:43 -04:00
|
|
|
class BugzillaService < IssueTrackerService
|
2016-09-29 17:11:32 -04:00
|
|
|
validates :project_url, :issues_url, :new_issue_url, presence: true, url: true, if: :activated?
|
|
|
|
|
2016-06-26 13:36:43 -04:00
|
|
|
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
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2016-06-26 13:36:43 -04:00
|
|
|
'bugzilla'
|
|
|
|
end
|
|
|
|
end
|