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