Files
national-parks-api/app/views/api/v1/stats/index.json.jbuilder
2025-10-08 09:50:33 -07:00

11 lines
297 B
Ruby

json.park_count @park_count
json.alert_count @alert_count
json.state_with_most_parks do
json.state @state_with_most_parks[0]
json.park_count @state_with_most_parks[1]
end
json.park_with_most_alerts do
json.park_code @park_with_most_alerts[0]
json.alert_count @park_with_most_alerts[1]
end