Sha256: a89ad5c7bf38399fc533a749bb6e7fbcbfc116c8f07e2085bc4bc6554b14c829
Contents?: true
Size: 839 Bytes
Versions: 100
Compression:
Stored size: 839 Bytes
Contents
class CockpitController < ApplicationController before_action :find_resource, :only => [:host_ssh_params] def host_ssh_params render :json => SSHExecutionProvider.ssh_params(@host) end def redirect return invalid_request unless params[:redirect_uri] redir_url = URI.parse(params[:redirect_uri]) cockpit_url = SSHExecutionProvider.cockpit_url_for_host('') redir_url.query = if redir_url.hostname == URI.join(Setting[:foreman_url], cockpit_url).hostname "access_token=#{request.session_options[:id]}" else "error_description=Sorry" end redirect_to(redir_url.to_s) end private def resource_name "host" end def controller_permission :hosts end def action_permission :cockpit end end
Version data entries
100 entries across 100 versions & 1 rubygems