Class: Leva::OptimizationRunsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Leva::OptimizationRunsController
- Defined in:
- app/controllers/leva/optimization_runs_controller.rb
Instance Method Summary collapse
-
#show ⇒ void
GET /optimization_runs/:id Shows the optimization progress page.
Instance Method Details
#show ⇒ void
This method returns an undefined value.
GET /optimization_runs/:id Shows the optimization progress page
10 11 12 13 14 15 |
# File 'app/controllers/leva/optimization_runs_controller.rb', line 10 def show respond_to do |format| format.html format.json { render json: @optimization_run } end end |