summaryrefslogtreecommitdiff
path: root/app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb')
-rw-r--r--app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb b/app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb
new file mode 100644
index 0000000..a109745
--- /dev/null
+++ b/app/decorators/super_good/solidus_taxjar/spree/shipment/fire_shipment_shipped_event.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module SuperGood
+ module SolidusTaxjar
+ module Spree
+ module Shipment
+ module FireShipmentShippedEvent
+ def after_ship
+ ::Spree::Event.fire 'shipment_shipped', shipment: self
+ super
+ end
+
+ ::Spree::Shipment.prepend(self)
+ end
+ end
+ end
+ end
+end