Class: Leva::OptimizationRunsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/leva/optimization_runs_controller.rb

Instance Method Summary collapse

Instance Method Details

#showvoid

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