ManageIQ/manageiq-ui-classic

View on GitHub
app/controllers/oauth_sessions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class OAuthSessionsController < ApplicationController
  def create
    session[:oauth_response] = request.env["omniauth.auth"]
    render :text => _("Authenticated, please close tab to return to ManageIQ.")
  end
end