I'm using Rails 3 with mongoid 2 and have a simple question regarding mongoid validation.
if @forum.topics.create!(name: params[:topic][:name])
# success, do something
else
#should handle errors but doesn't
render 'new'
end
If I use the .create! method, it runs validations on a mongoid model class correctly, but it is not getting to the else block to display the error. Instead it returns a rails error page saying...
Mongoid::Errors::Validations in TopicsController#create
Validation failed - Name can't be blank.
That's good, but how do I display that in a view instead of getting an ugly rails error message page?
@forum.topics.new(name: params[:topic][:name]).savein the if condition? – MrYoshiji Nov 15 '12 at 19:38