10 lines
291 B
Ruby
10 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
class JiraTrackerData < ApplicationRecord
|
|
include Services::DataFields
|
|
|
|
attr_encrypted :url, encryption_options
|
|
attr_encrypted :api_url, encryption_options
|
|
attr_encrypted :username, encryption_options
|
|
attr_encrypted :password, encryption_options
|
|
end
|