mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
256 B
Ruby
14 lines
256 B
Ruby
class ExchangeFee < ActiveRecord::Base
|
|
belongs_to :exchange
|
|
belongs_to :enterprise_fee
|
|
|
|
after_save :refresh_products_cache
|
|
after_destroy :refresh_products_cache
|
|
|
|
private
|
|
|
|
def refresh_products_cache
|
|
exchange.refresh_products_cache
|
|
end
|
|
end
|