In the Rails 4.1.1 version of an app, I have the following create method in articles_controller:
def create
@article = Article.new(article_params)
authorize @article
if @article.save
flash[:notice] = "Successfully created article."
redirect_to edit_article_path(@article)
else
render :new
end
end
However, after updating to Rails 4.2 the following error accounts when the redirect is attempted:
wrong number of arguments (2 for 1)
Why does this error occur and how can it be resolved?