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

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

module Integrations
  class IssueTrackerData < ApplicationRecord
    include BaseDataFields

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