Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_tracker_data.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 414f2c1da4db036e0d281d46df47a63ec8766246 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class IssueTrackerData < ApplicationRecord
  include Services::DataFields

  attr_encrypted :project_url, encryption_options
  attr_encrypted :issues_url, encryption_options
  attr_encrypted :new_issue_url, encryption_options
end