summaryrefslogtreecommitdiff
path: root/app/models/project_services/jira_tracker_data.rb
blob: f24ba8877d21b5d6b82185f31f359728884d5938 (plain)
1
2
3
4
5
6
7
8
9
10
# 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