Module: ActiveScaffold::Actions::Nested::ChildMethods

Defined in:
lib/active_scaffold/actions/nested.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



133
134
135
# File 'lib/active_scaffold/actions/nested.rb', line 133

def self.included(base)
  super
end

Instance Method Details

#add_existingObject



142
143
144
145
# File 'lib/active_scaffold/actions/nested.rb', line 142

def add_existing
  do_add_existing
  respond_to_action(:add_existing)
end

#destroy_existingObject



147
148
149
150
151
# File 'lib/active_scaffold/actions/nested.rb', line 147

def destroy_existing
  return redirect_to(params.merge(:action => :delete, :only_path => true)) if request.get?
  do_destroy_existing
  respond_to_action(:destroy_existing)
end

#new_existingObject



137
138
139
140
# File 'lib/active_scaffold/actions/nested.rb', line 137

def new_existing
  do_new
  respond_to_action(:new_existing)
end