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

  skip_before_filter :verify_authenticity_token

  def new
    @errors = authentication_error
  end

  def create
    authenticate!
  end

  def update
    debugger
    authenticate!
  end

  def destroy
    logout
    redirect_to root_path
  end
end