mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
17 lines
290 B
Ruby
17 lines
290 B
Ruby
module Admin
|
|
class SuppliersController < ResourceController
|
|
before_filter :load_data, :except => [:index]
|
|
|
|
helper 'spree/products'
|
|
|
|
private
|
|
def load_data
|
|
@countries = Spree::Country.order(:name)
|
|
end
|
|
|
|
def collection
|
|
super.order(:name)
|
|
end
|
|
end
|
|
end
|