18 lines
570 B
Ruby
18 lines
570 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OpenProjectService < IssueTrackerService
|
|
validates :url, public_url: true, presence: true, if: :activated?
|
|
validates :api_url, public_url: true, allow_blank: true, if: :activated?
|
|
validates :token, presence: true, if: :activated?
|
|
validates :project_identifier_code, presence: true, if: :activated?
|
|
|
|
data_field :url, :api_url, :token, :closed_status_id, :project_identifier_code
|
|
|
|
def data_fields
|
|
open_project_tracker_data || self.build_open_project_tracker_data
|
|
end
|
|
|
|
def self.to_param
|
|
'open_project'
|
|
end
|
|
end
|