ref: master
plugins/soft_delete/lib/ext/suppliers_plugin.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
ActiveSupport.on_load :suppliers_plugin_extensions do require_dependency 'suppliers_plugin/supplier' require_dependency 'suppliers_plugin/source_product' class SuppliersPlugin::Supplier acts_as_paranoid soft_delete_associations_with_deleted :profile, :consumer end class SuppliersPlugin::SourceProduct acts_as_paranoid soft_delete_associations_with_deleted :from_product, :to_product, :supplier, :sources_from_products end end |