blob: 27d10fb913a90e2e3bde72f628094abf7a6da1e0 (
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
28
29
|
module V1
class SessionsController < ApplicationController
skip_before_filter :verify_authenticity_token
def new
@session = Session.new
if authentication_errors
@errors = authentication_errors
render :status => 422
end
end
def create
logout if logged_in?
authenticate!
end
def update
authenticate!
render :json => session.delete(:handshake)
end
def destroy
logout
redirect_to root_path
end
end
end
|