debian-mirror-gitlab/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

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
module Integrations
class ZentaoTrackerData < ApplicationRecord
2022-07-23 23:45:48 +05:30
include BaseDataFields
2021-11-11 11:23:49 +05:30
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