Existe-t-il un moyen de changer la longueur minimale des mots de passe avec restful_authentication? Actuellement, c'est 6 caractères et j'ai besoin d'une autre valeur.
J'ai essayé d'appeler validates_length_of avant et après Authentication::ByPassword comme ceci
validates_length_of :password, :within => 4..40, :if => :password_required?
include Authentication::ByPassword
et comme ceci:
include Authentication::ByPassword
validates_length_of :password, :within => 4..40, :if => :password_required?
mais le mot de passe minimum est resté à 6.