Files
openfoodnetwork/app/controllers/application_controller.rb

13 lines
272 B
Ruby

class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :load_data_for_sidebar
private
def load_data_for_sidebar
@suppliers = Spree::Supplier.all
@distributors = Spree::Distributor.with_products_on_hand.by_name
end
end