adopt-a-hydrant/app/controllers/hydrants_controller.rb

13 lines
287 B
Ruby

class HydrantsController < ApplicationController
respond_to :json
def update
@hydrant = Hydrant.find(params[:id])
if @hydrant.update_attributes(params[:hydrant])
render(:json => @hydrant)
else
render(:json => {"errors" => @hydrant.errors})
end
end
end