Files
national-parks-api/app/controllers/api/v1/parks_controller.rb
2025-10-07 22:09:41 -07:00

6 lines
103 B
Ruby

class Api::V1::ParksController < ApplicationController
def index
render json: Park.all
end
end