Class: Renalware::API::UKRDC::PatientsController

Inherits:
BaseController show all
Defined in:
app/controllers/renalware/api/ukrdc/patients_controller.rb

Instance Method Summary collapse

Methods inherited from BaseController

#patient

Instance Method Details

#showObject



11
12
13
14
15
16
17
18
19
# File 'app/controllers/renalware/api/ukrdc/patients_controller.rb', line 11

def show
  respond_to do |format|
    format.xml do
      render locals: {
        patient: patient_presenter
      }
    end
  end
end