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

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

class ProjectSetting < ApplicationRecord
  belongs_to :project, inverse_of: :project_setting

  self.primary_key = :project_id
end

ProjectSetting.prepend_if_ee('EE::ProjectSetting')