Displaying 1 result from an estimated 1 matches for "update_email".
Did you mean:
update&eemail
2007 May 23
6
RESTful RESOURCE PARTIAL UPDATE
...ttributes for the same model
from seperate forms instead of one form, while using the given
scaffolding code and performing model validations. I am using
restful_authentication with the login email password validations
defined.
class users_controller
edit_email
edit_login
edit_password
update_email if update_attr save else render => edit_email
update_login if update_attr save else render => edit_login
update_password @curr_pass = params[:curr+passs] if update_attr
save else render => edit_password
end
i have made routes
edit_email_path
edit_login_path
edit_p...