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
|