mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
class ApplicationController < ActionController::Base
|
|
protect_from_forgery
|
|
|
|
before_filter :load_suppliers_and_distributors
|
|
|
|
private
|
|
def load_suppliers_and_distributors
|
|
@suppliers = Spree::Supplier.all
|
|
@distributors = Spree::Distributor.all
|
|
end
|
|
|
|
end
|