summaryrefslogtreecommitdiff
path: root/users/app/controllers/sessions_controller.rb
blob: 0195f30ce7c8c7f776be0c82463ffdbbdf9b8982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class SessionsController < ApplicationController

  def new
    redirect_to home_url if logged_in?
    @session = Session.new
    if authentication_errors
      @errors = authentication_errors
      render :status => 422
    end
  end

  def destroy
    logout
    redirect_to home_url
  end

  #
  # this is a bad hack, but user_url(user) is not available
  # also, this doesn't work because the redirect happens as a PUT. no idea why.
  #
  #Warden::Manager.after_authentication do |user, auth, opts|
  #  response = Rack::Response.new
  #  response.redirect "/users/#{user.id}"
  # throw :warden, response.finish
  #end

end