Files
openfoodnetwork/app/controllers/spree/admin/distributors_controller.rb
2012-04-09 09:56:37 +10:00

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