RyanofWoods/rails-react-swedish-birds

View on GitHub
app/views/api/observations/index.json.jbuilder

Summary

Maintainability
Test Coverage
json.observations do
  @observations.each do |observation|
    json.set! observation.scientific_name do
      json.observedAt observation.observed_at
      json.note observation.note
    end
  end
end