is it possible to run ActiveRecord validates on given controller and action.
For example I have user_controller and signup_controller
user_controller
signup_controller
I
use validates :password, :if => :password_changed? in user.rb
validates :password, :if => :password_changed?
if form in users_controller does not submit password field then you should be ok.
password