class SessionsController < ApplicationController
skip_before_filter :verify_authenticity_token
def new
@errors = authentication_error
end
def create
authenticate!
end
def update
authenticate!
render :json => session.delete(:handshake)
end
def destroy
logout
redirect_to root_path
end
end