Files
gitlab-foss/app/models/namespaces/ldap_setting.rb
2023-02-21 03:12:30 +00:00

12 lines
290 B
Ruby

# frozen_string_literal: true
module Namespaces
class LdapSetting < ApplicationRecord
belongs_to :namespace, inverse_of: :namespace_ldap_settings
validates :namespace, presence: true
self.primary_key = :namespace_id
self.table_name = 'namespace_ldap_settings'
end
end