summaryrefslogtreecommitdiff
path: root/lib/super_good/solidus_taxjar/api.rb
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2019-01-31 09:24:44 -0800
committerJared Norman <jared@super.gd>2019-01-31 09:24:44 -0800
commit8581484be15ed19bbd37d861b082ba1e9b34b978 (patch)
treec80167bd82aa785d9eac6006c7e76a6920c9e3d1 /lib/super_good/solidus_taxjar/api.rb
parent61837b129c1e580085b0f1abc1ec2f51b4b8142b (diff)
Add ability to create refunds
Diffstat (limited to 'lib/super_good/solidus_taxjar/api.rb')
-rw-r--r--lib/super_good/solidus_taxjar/api.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/super_good/solidus_taxjar/api.rb b/lib/super_good/solidus_taxjar/api.rb
index 61fecae..7309a64 100644
--- a/lib/super_good/solidus_taxjar/api.rb
+++ b/lib/super_good/solidus_taxjar/api.rb
@@ -32,6 +32,10 @@ module SuperGood
taxjar_client.delete_order order.number
end
+ def create_refund_for(reimbursement)
+ taxjar_client.create_refund APIParams.refund_params(reimbursement)
+ end
+
private
attr_reader :taxjar_client