Welcome to mirror list, hosted at ThFree Co, Russian Federation.

open_project_service.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a24fbc1611da8af9757fcd13b2347329d5969012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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