mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
12 lines
240 B
Ruby
12 lines
240 B
Ruby
module Spree
|
|
module Admin
|
|
class DistributorsController < ResourceController
|
|
before_filter :load_data, :except => [:index]
|
|
|
|
private
|
|
def load_data
|
|
@countries = Country.order(:name)
|
|
end
|
|
end
|
|
end
|
|
end |