Class: CommandTower::ProfileController

Inherits:
ApplicationController
  • Object
show all
Includes:
Auth::AuthenticationBoundary, Auth::AuthorizationBoundary
Defined in:
app/controllers/command_tower/profile_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



11
12
13
14
15
16
17
# File 'app/controllers/command_tower/profile_controller.rb', line 11

def show
  result = CommandTower::Workflows::Profile::ShowWorkflow.call(
    current_user: current_user,
    auth_context: current_auth_context
  )
  render_application_result(result)
end