Method: ForumsController#update
- Defined in:
- app/controllers/forums_controller.rb
#update ⇒ Object
40 41 42 43 44 45 46 |
# File 'app/controllers/forums_controller.rb', line 40 def update @forum.update_attributes!(params[:forum]) respond_to do |format| format.html { redirect_to @forum } format.xml { head 200 } end end |