Class: StudentsController
Instance Attribute Summary
#formats
Instance Method Summary
collapse
included
clear_respond_to, inherit_resources, respond_to, #respond_to, #respond_with, #responder
Instance Method Details
#edit ⇒ Object
15
16
17
18
19
|
# File 'lib/vendor/plugins/inherited_resources/test/aliases_test.rb', line 15
def edit
edit! do |format|
format.xml { render :text => 'Render XML' }
end
end
|
#new ⇒ Object
21
22
23
24
|
# File 'lib/vendor/plugins/inherited_resources/test/aliases_test.rb', line 21
def new
@something = 'magical'
new!
end
|