Gregory Witek
Gregory Witek
Hey @takashi, the implementation of `external?` in Sorcery is not great. You can change it for example to: ``` def external? authentications.present? end ``` This way users will not require...
Hi @Fustrate, thanks a lot for your contribution! I've briefly read the code and it looks good (and thanks for improving specs!). I'll have more time next week to read...
Sounds good, but I'm not sure how to proceed with deprecation. This will be compatibility-breaking change, so we can remove this option in v0.9 What until then? We could add...
Hi Konstantin, thanks for your report, I'll have a look at this issue on the weekend and will get back to you then.
Devise currently clears csrf_token on login by default. There's an option to disable it, which is one of possible ways of dealing with this issue. I do it different way...
Hi @timoroemer, did you run `rails generate sorcery:install`?
@timoroemer I can't really help. Yesterday I tried to reproduce it and I could easily create users with FactoryGirl, so I have no idea what causes the problem in your...
Is it possible to find user by his embedded documents in MongoDB? I mean, if Twitter authentication is embedded, can I find user doing something like `User.where("authentications.provider = 'twitter' and...
Ok, I've checked it, it's possible, it looks pretty esy to implement, I actually like the idea. The only problem is that it requires migrating data and changing models. Maybe...
Hi @agustaf9 can you provide the form code? Maybe you're calling `form_for current_user` and `current_user` is `nil`?