Method: Orchestrator::Api::SystemsController#show

Defined in:
app/controllers/orchestrator/api/systems_controller.rb

#showObject



38
39
40
41
42
43
44
45
46
# File 'app/controllers/orchestrator/api/systems_controller.rb', line 38

def show
    if params.has_key? :complete
        respond_with @cs, {
            methods: [:module_data, :zone_data]
        }
    else
        respond_with @cs
    end
end