mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
6 lines
243 B
Ruby
6 lines
243 B
Ruby
class SuburbsController < ActionController::Base
|
|
def index
|
|
@suburbs = Suburb.order(:name).where("lower(name) like ?", "%#{params[:term].downcase}%")
|
|
render json: @suburbs.map{ |suburb| "#{suburb.name}, #{suburb.postcode}" }
|
|
end
|
|
end |