ricarthlima/eo-project-es

View on GitHub
app/controllers/sessions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SessionsController < ApplicationController
   before_action :authenticate_usuario!
   def create
      #render :create
      #render text: request.env['omniauth.auth'].to_yaml
      @twitter =  request.env['omniauth.auth']
      render @twitter.to_erb
      # redirect_to inicio_path
   end
end