Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building a simple JSON API using the rails-api gem.

models/user.rb:

class User < ActiveRecord::Base
  has_secure_password
  attr_accessible :email, :password, :password_confirmation

  validates :email, presence: true, uniqueness: { case_sensitive: false }, format: { with: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i }
  validates :password, presence: { on: :create }, length: { minimum: 6 }
end

When I try to sign up without a password this is the JSON output I get:

{
  "errors": {
      "password_digest": [
          "can't be blank"
      ],
      "password": [
          "can't be blank",
          "is too short (minimum is 6 characters)"
      ]
   }
}

Is it possible to hide the error message for password_digest? I'm returning the @user object with respond_with in the controller.

I've tried the following but no luck (it just duplicates the error "can't be blank"):

validates :password_digest, presence: false
share|improve this question
maybe try "validates :password_digest, :allow_blank => true" – Jean-Paul Jan 29 at 16:21
Thanks, but it doesn't work. It says I have to specify at least one validation rule. – Richard Jan 29 at 16:32
validates :password, presence: { on: :create }, length: { minimum: 6, allow_blank: true } – Jean-Paul Jan 29 at 16:43
@Jean-Paul: It doesn't hide the validation message for password_digest. – Richard Jan 30 at 7:09

2 Answers

up vote 1 down vote accepted

@freemanoid: I tried your code, and it didn't work. But it gave me some hints. Thanks! This is what worked for me:

models/user.rb

after_validation { self.errors.messages.delete(:password_digest) }
share|improve this answer

You can manually delete this message in json handler in User model. Smth like:

class User < ActiveRecord::Base
  def as_json(options = {})
    self.errors.messages.delete('password_digest')
    super(options)
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.