Files
growstuff/app/controllers/api/v1/crops_controller.rb
2015-01-11 19:25:40 +00:00

14 lines
193 B
Ruby

class Api::V1::CropsController < ApplicationController
# GET /api/v1/crops
def index
@crops = Crop.all
end
# GET /crops/1
def show
@crop = Crop.find(params[:id])
end
end