Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7772585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T16:55:19+00:00 2026-06-01T16:55:19+00:00

i have a user model with a password attribute, which gets saved as password_digest.

  • 0

i have a user model with a password attribute, which gets saved as password_digest.
What i want to do is have the edit user page and the edit password page separated, so that
the admin doesn’t need to input the password everytime he needs to change something else. For this i have made an extra action / view.

My problem is that when i update the user info, i get password validation errors even though
i have no password field in the form. Which leads me to the conclusion that partial_updates isn’t working with the password attribute (as i have already tested in the console that it is enabled, and it is)

Is this me doing something wrong, or should i approach this differently?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T16:55:20+00:00Added an answer on June 1, 2026 at 4:55 pm

    Similar to the railscasts approach mentioned by @normalocity, but without the need to set a pseudo-attribute in the controller, we do this (which is essentially taken from restful_authentication):

    attr_accessor :password
    
    validates :password,
              :length => { :minimum => 8 },
              :confirmation => true,
              :presence => true,
              :if => :password_required?
    
    def password_required?
      password_digest.blank? || !password.blank?
    end
    

    Basically, we assume that if the password_digest hasn’t been set yet (for a new record), or if the password pseudo-attribute has been set, then that means the password is being changed and the validations have to be run. So we don’t need to set a updating_password pseudo-attribute like they do in the railscasts episode.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a User model that has a :credits attribute. I want a simple
I have a user model that requires the user to change their password every
I have a typical User model (username, password, name, etc). I want to allow
I have a user model on which I check to make sure that the
I have a User model that acts_as_authentic for AuthLogic's password management. AuthLogic adds password
I have a user model with a settings page at /users/1/edit Currently you can
I have a User model that has the following default_scope: default_scope where(account_id: Account.current_account.id) If
In my app, I have a User model, which includes a number of attributes
I have a member model with a reset_token method (which assigns a user a
I have a user model that has_one profile, and the profile belongs to the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.