I was going through this Railscast to setup Omniauth Identity, but I was unclear about one part. He creates a new Model called Identity which then holds the email, name and password fields. However, I already have a user model with those fields, so can I just connect Identity to it? How would I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Since the goal is to separate "identity" from "user", using your User model is not recommended. Create a new If you must use your User model, you can override in the configuration by specifying |
|||
|
|