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

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

module DataFields
  extend ActiveSupport::Concern

  included do
    has_one :issue_tracker_data
    has_one :jira_tracker_data
  end
end