mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +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
|