summaryrefslogtreecommitdiff
path: root/users/app/controllers/sessions_controller.rb
blob: 7b7799c9d40888224a29269f0c5dc1f7f267324a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class SessionsController < ApplicationController

  skip_before_filter :verify_authenticity_token

  def new
  end

  def create
    env['warden'].authenticate!
  end

  def update
    env['warden'].authenticate!
  end

  def destroy
    session[:user_id] = nil
    redirect_to root_path
  end
end