Class: SessionsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- SessionsController
- Defined in:
- lib/generators/mindapp/templates/app/controllers/sessions_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
to refresh the page, must know BEFOREHAND that the action needs refresh then use attribute ‘data-ajax’=>‘false’ see app/views/sessions/new.html.erb for sample.
- #destroy ⇒ Object
- #failure ⇒ Object
- #new ⇒ Object
Methods inherited from ApplicationController
Instance Method Details
#create ⇒ Object
to refresh the page, must know BEFOREHAND that the action needs refresh then use attribute ‘data-ajax’=>‘false’ see app/views/sessions/new.html.erb for sample
10 11 12 13 14 15 16 17 |
# File 'lib/generators/mindapp/templates/app/controllers/sessions_controller.rb', line 10 def create auth = request.env["omniauth.auth"] user = User.from_omniauth(auth) session[:user_id] = user.id refresh_to root_path rescue redirect_to root_path, :alert=> "Authentication failed, please try again." end |
#destroy ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/generators/mindapp/templates/app/controllers/sessions_controller.rb', line 19 def destroy session[:user_id] = nil # redirect_to '/mindapp/help' refresh_to root_path # render not work!! #redirect_to 'mindapp/index' end |
#failure ⇒ Object
27 28 29 30 |
# File 'lib/generators/mindapp/templates/app/controllers/sessions_controller.rb', line 27 def failure ma_log "Authentication failed, please try again." redirect_to root_path, :alert=> "Authentication failed, please try again." end |
#new ⇒ Object
3 4 5 |
# File 'lib/generators/mindapp/templates/app/controllers/sessions_controller.rb', line 3 def new @title= 'Sign In' end |