method

valid_options

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: BelongsTo
valid_options(options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/builder/belongs_to.rb, line 9
    def self.valid_options(options)
      valid = super + [:polymorphic, :counter_cache, :optional, :default]
      valid << :class_name unless options[:polymorphic]
      valid << :foreign_type if options[:polymorphic]
      valid << :ensuring_owner_was if options[:dependent] == :destroy_async
      valid
    end
Register or log in to add new notes.