daitokai/daitokaiet

View on GitHub
app/controllers/sessions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SessionsController < ApplicationController
  def callback
    auth # Do what you want with the auth hash!
  end

  def auth; request.env['omniauth.auth'] end
end