[Rails] How to create a better flash error message
Currently, my flash message looks like this: "Attend was not created.
{:user_id=>["You are already attending this event"]}"
How can i make it return: "Attend was not created. You are already
attending this event"
Controller / def create:
if @attend.save
...
else
format.js { flash[:notice] = "Attend was not created.
#{@attend.errors}" }
end
------------
Model:
class Attend < Interaction
validate :attends_have_to_be_unique
def attends_have_to_be_unique
unless Interaction.where(:user_id => self.user.id, :type =>
'Attend').blank?
errors.add(:user_id, "You are already attending this event")
end
end
end
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home