6 lines
103 B
Ruby
6 lines
103 B
Ruby
class Api::V1::ParksController < ApplicationController
|
|
def index
|
|
render json: Park.all
|
|
end
|
|
end
|