I am trying to use Omniauth facebook with two devise models in a Rails 3 app. Currently that's not something that's possible using omniauthable and the devise helpers.
A similar question answered how to do this:
Omniauth "with" STI and devise
"..move your omniauth configuration from devise.rb to omniauth.rb and create your own omniauth routes.'
But I am having trouble in defining these routes and helpers, i.e. for facebook I used a devise helper like this:
user_omniauth_authorize_path(:facebook)
..which redirected to facebook and then placed a callback URL I set up in my devise_for scope.
What would my routes/helpers look like for the omniauth-facebook strategy if setting up manually?
I already had omniauth-facebook and devise nicely working for the 'User' model before, so I have the various
@user = User.find_for_facebook_oauth(request.env["omniauth.auth"], current_user, params[:state])
..parts ready to go, but now with two models. I'm just having trouble with replacing the devise helpers I think.