summaryrefslogtreecommitdiff
path: root/app/models/namespace_setting.rb
blob: 53bfa3d979eb417e2da7b25bd710f83e9bec8f66 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class NamespaceSetting < ApplicationRecord
  belongs_to :namespace, inverse_of: :namespace_settings

  self.primary_key = :namespace_id
end

NamespaceSetting.prepend_if_ee('EE::NamespaceSetting')