forked from External/greenlight
add lb option
This commit is contained in:
@ -6,8 +6,8 @@ class SessionsController < ApplicationController
|
||||
|
||||
# GET /logout
|
||||
def destroy
|
||||
logout if current_user
|
||||
head :no_content
|
||||
logout
|
||||
redirect_to root_path
|
||||
end
|
||||
|
||||
# POST /login
|
||||
@ -22,6 +22,18 @@ class SessionsController < ApplicationController
|
||||
end
|
||||
end
|
||||
|
||||
# POST /launch
|
||||
def launch
|
||||
# This will recieve a encoded POST from a launcher that
|
||||
# contains the provider, and all user information. The
|
||||
# launcher is what does the authentication, so we know
|
||||
# that the user is who they say they are. We just need
|
||||
# to use our secret to decode it and then log them in
|
||||
# to GreenLight (or sign them up).
|
||||
|
||||
# User.from_launch()
|
||||
end
|
||||
|
||||
# GET/POST /auth/:provider/callback
|
||||
def omniauth
|
||||
user = User.from_omniauth(request.env['omniauth.auth'])
|
||||
|
Reference in New Issue
Block a user