mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
256 B
Ruby
13 lines
256 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
|
|
end
|
|
|
|
end
|