15 lines
259 B
Ruby
15 lines
259 B
Ruby
|
class SessionsController < ApplicationController
|
||
|
def create
|
||
|
user = User.from_omniauth(env['omniauth.auth'])
|
||
|
session[:user_id] = user.id
|
||
|
|
||
|
redirect_to root_path
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
session[:user_id] = nil
|
||
|
|
||
|
redirect_to root_path
|
||
|
end
|
||
|
end
|