How can I use both registerable and omniauthable modules in Devise?
Specifically I'd like to be able to let users do the following:
- Register/login with email and password
- Register/login with Facebook (via omniauth)
- Attach or remove a Facebook account to their account so they can login with either their email or their Facebook account.
I don't know how to do 3 at all.
1 and 2 are done, but where it gets weird is if the user registered with a Facebook account, I don't need to show (or require) them to enter a password to update their profile.
So, how can I...
- Let users attach a Facebook account to their current account so they can login with either.
- If the user only signed up with a Facebook account, how do I hide (and not require) the password fields when editing their settings.
