diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-06-12 10:11:33 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-06-19 13:32:26 -0400 |
commit | eb40f5598b09feb017c0fb290a53b04d82513d77 (patch) | |
tree | 87d2903ecfda04df3b444619dd791964a51d2569 | |
parent | 1fc5960ee131584eb0fce6eae7373248ff0f61fd (diff) |
RT# 76308 - Added action Sent HTTP or HTTPS post to event types Package, Customer, Batch Payment, Statement, Account service
-rw-r--r-- | FS/FS/part_event/Action/http.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/part_event/Action/http.pm b/FS/FS/part_event/Action/http.pm index c3b1af039..10e9bd463 100644 --- a/FS/FS/part_event/Action/http.pm +++ b/FS/FS/part_event/Action/http.pm @@ -17,6 +17,11 @@ sub description { 'Send an HTTP or HTTPS POST request'; } sub eventtable_hashref { { 'cust_bill' => 1, 'cust_pay' => 1, + 'cust_pkg' => 1, + 'cust_main' => 1, + 'cust_pay_batch' => 1, + 'cust_statement' => 1, + 'svc_acct' => 1, }, } |