Is it possible to have Devise not worry about passwords at all? I am experimenting with it in a Rails app that will use only OpenID for authentication and nothing else. I don’t want to store anything related to passwords in my database. Does Devise have to use passwords or is there a way to configure so it doesn’t have to worry about it?
Share
devise module Database Authenticatable. as github says its responsible for
Maybe you want to not include this module in you User model.
Also im guess if you dont want to store password, than creating your own registration/authentication process is a great idea. See Ryan screencast about it, should be enough, just cut the part with password.