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

open_project.rb « integrations « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4cfb24151ade56caf2761810f6597f7244714dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Integrations
  class OpenProject < BaseIssueTracker
    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
end