2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IssueTrackerData < ApplicationRecord
|
2020-04-22 19:07:51 +05:30
|
|
|
include Services::DataFields
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
attr_encrypted :project_url, encryption_options
|
|
|
|
attr_encrypted :issues_url, encryption_options
|
|
|
|
attr_encrypted :new_issue_url, encryption_options
|
|
|
|
end
|