Method: Bongo::ArticlesController#create

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

#createObject



33
34
35
36
37
38
39
40
41
42
# File 'app/controllers/bongo/articles_controller.rb', line 33

def create
  @article = Article.new(article_params)
  authorize @article

  if @article.save
    redirect_to @article, notice: 'Article was successfully created.'
  else
    render :new
  end
end