2014-05-25 65 views

回答

14

,你可以在你的用戶模型覆蓋它們:

def password_required? 
    false 
end 

def email_required? 
    true 
end 

編輯:

def password_required? 
    new_record? ? false : super 
end 
+0

非常感謝!有效! – THpubs

+0

不客氣:-) – matanco

+0

@EApubs,你應該接受答案,如果它爲你工作。 –

相關問題