2019-05-22 11:47:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class JiraTrackerData < ApplicationRecord
|
2020-03-27 08:07:43 -04:00
|
|
|
include Services::DataFields
|
2019-05-22 11:47:42 -04:00
|
|
|
|
|
|
|
attr_encrypted :url, encryption_options
|
|
|
|
attr_encrypted :api_url, encryption_options
|
|
|
|
attr_encrypted :username, encryption_options
|
|
|
|
attr_encrypted :password, encryption_options
|
2020-08-11 20:09:52 -04:00
|
|
|
|
|
|
|
enum deployment_type: { unknown: 0, server: 1, cloud: 2 }, _prefix: :deployment
|
2019-05-22 11:47:42 -04:00
|
|
|
end
|