2018-08-10 02:45:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-01-20 19:55:35 -05:00
|
|
|
class CustomIssueTrackerService < IssueTrackerService
|
2018-06-01 07:43:53 -04:00
|
|
|
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
|
2016-09-29 17:11:32 -04:00
|
|
|
|
2015-01-20 19:55:35 -05: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
|
|
|
|
'Custom Issue Tracker'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-23 10:52:39 -04:00
|
|
|
def title=(value)
|
|
|
|
self.properties['title'] = value if self.properties
|
|
|
|
end
|
|
|
|
|
2015-01-20 19:55:35 -05:00
|
|
|
def description
|
|
|
|
if self.properties && self.properties['description'].present?
|
|
|
|
self.properties['description']
|
|
|
|
else
|
|
|
|
'Custom issue tracker'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2015-01-23 12:14:45 -05:00
|
|
|
'custom_issue_tracker'
|
2015-01-20 19:55:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
|
|
|
{ type: 'text', name: 'title', placeholder: title },
|
|
|
|
{ type: 'text', name: 'description', placeholder: description },
|
2017-05-22 06:07:12 -04:00
|
|
|
{ type: 'text', name: 'project_url', placeholder: 'Project url', required: true },
|
|
|
|
{ type: 'text', name: 'issues_url', placeholder: 'Issue url', required: true },
|
|
|
|
{ type: 'text', name: 'new_issue_url', placeholder: 'New Issue url', required: true }
|
2015-01-20 19:55:35 -05:00
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|