Method: ArticlesController#update
- Defined in:
- lib/app/controllers/articles_controller.rb
#update ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/app/controllers/articles_controller.rb', line 27 def update if @article.update(article_params) redirect_to @article else render 'edit' end end |