gitlab-org--gitlab-foss/app/models/integrations/zentao_tracker_data.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
336 B
Ruby
Raw Normal View History

# 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