2019-05-22 11:47:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IssueTrackerData < ApplicationRecord
|
2020-03-27 08:07:43 -04:00
|
|
|
include Services::DataFields
|
2019-05-22 11:47:42 -04:00
|
|
|
|
|
|
|
attr_encrypted :project_url, encryption_options
|
|
|
|
attr_encrypted :issues_url, encryption_options
|
|
|
|
attr_encrypted :new_issue_url, encryption_options
|
|
|
|
end
|