class ActiveScaffold::Config::Nested

Attributes

ignore_order_from_association[RW]
label[W]

the label for this Nested action. used for the header.

shallow_delete[RW]

instance-level configuration


Public Class Methods

new(core_config) click to toggle source
Calls superclass method ActiveScaffold::Config::Base::new
# File lib/active_scaffold/config/nested.rb, line 5
def initialize(core_config)
  super
  @label = :add_existing_model
  @shallow_delete = self.class.shallow_delete
  @ignore_order_from_association = self.class.ignore_order_from_association
end

Public Instance Methods