mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
11 lines
279 B
Ruby
11 lines
279 B
Ruby
module Admin
|
|
class EnterpriseFeesController < ResourceController
|
|
before_filter :load_enterprise_fees_set, :only => :index
|
|
|
|
private
|
|
def load_enterprise_fees_set
|
|
@enterprise_fees_set = ModelSet.new EnterpriseFee.all, :collection => collection
|
|
end
|
|
end
|
|
end
|