mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
6 lines
139 B
Ruby
6 lines
139 B
Ruby
class SuburbsController < ActionController::Base
|
|
def index
|
|
@suburbs = Suburb.matching(params[:term]).order(:name).limit(8)
|
|
end
|
|
end
|