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

13 lines
345 B
Ruby
Raw Normal View History

class AddressesController < ApplicationController
2011-05-06 02:38:25 +00:00
respond_to :json
2011-03-27 18:45:58 +00:00
def show
@address = Address.geocode("#{params[:address]}, #{params[:city_state]}")
2014-04-01 08:15:29 +00:00
if @address.blank?
render(json: {errors: {address: [t('errors.not_found', thing: t('defaults.address'))]}}, status: 404)
else
2014-04-01 08:15:29 +00:00
respond_with @address
end
end
end