Method: Bongo::ArticlesController#destroy

Defined in:
app/controllers/bongo/articles_controller.rb

#destroyObject



54
55
56
57
58
# File 'app/controllers/bongo/articles_controller.rb', line 54

def destroy
  authorize @article
  @article.destroy
  redirect_to articles_url, notice: 'Article was successfully destroyed.'
end