0
I have a situation I can’t understand what’s wrong. I have a validation in the model that the console works correctly, but when running through the browser the form does Submit and ignores the validation.
My Model: class User < Activerecord::Base
validates :name, presence: true
has_secure_password
end
I’m racking my brain.
Have to display the params?
– Luiz Carvalho