Method: SectionRenderer#responses

Defined in:
app/presentation/section_renderer.rb

#responsesObject

Hash of ServiceType objects (join obj representing individual reponse data) included in this section. Keyed by string ServiceTypeValue id, value is array of ServiceTypes



297
298
299
300
301
302
303
304
305
# File 'app/presentation/section_renderer.rb', line 297

def responses
  unless (@responses)
    @responses = {}
    service_type_values.each do |st|
      @responses[st.name] = @umlaut_request.get_service_type(st) 
    end      
  end
  @responses
end