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

13 lines
283 B
Ruby

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