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

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

module Integrations
  class ZentaoTrackerData < ApplicationRecord
    include BaseDataFields

    attr_encrypted :url, encryption_options
    attr_encrypted :api_url, encryption_options
    attr_encrypted :zentao_product_xid, encryption_options
    attr_encrypted :api_token, encryption_options
  end
end