2021-08-31 08:11:07 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Integrations
|
|
|
|
class ZentaoTrackerData < ApplicationRecord
|
2022-05-30 05:09:35 -04:00
|
|
|
include BaseDataFields
|
2021-08-31 08:11:07 -04:00
|
|
|
|
|
|
|
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
|