debian-mirror-gitlab/app/models/project_services/custom_issue_tracker_service.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
class CustomIssueTrackerService < IssueTrackerService
2018-11-08 19:23:39 +05:30
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
2017-08-17 22:00:37 +05:30
2015-04-26 12:48:37 +05:30
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-10-01 15:18:49 +05:30
def title=(value)
self.properties['title'] = value if self.properties
end
2015-04-26 12:48:37 +05:30
def description
if self.properties && self.properties['description'].present?
self.properties['description']
else
'Custom issue tracker'
end
end
2017-08-17 22:00:37 +05:30
def self.to_param
2015-04-26 12:48:37 +05:30
'custom_issue_tracker'
end
def fields
[
{ type: 'text', name: 'title', placeholder: title },
{ type: 'text', name: 'description', placeholder: description },
2017-09-10 17:25:29 +05:30
{ 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-04-26 12:48:37 +05:30
]
end
end