Class: SessionsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- SessionsController
- Defined in:
- lib/bently/template/omniauth/sessions_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
2 3 4 5 6 |
# File 'lib/bently/template/omniauth/sessions_controller.rb', line 2 def create @user = User.find_or_create_from_auth_hash(auth_hash) self.current_user = @user redirect_to '/' end |