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

jira_tracker_data.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00b6ab6a70f4608971c1e8b1e59c0178d86de93f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class JiraTrackerData < ApplicationRecord
  include Services::DataFields

  attr_encrypted :url, encryption_options
  attr_encrypted :api_url, encryption_options
  attr_encrypted :username, encryption_options
  attr_encrypted :password, encryption_options

  enum deployment_type: { unknown: 0, server: 1, cloud: 2 }, _prefix: :deployment
end