Skip to content

Commit

Permalink
updated py module listing for docs and added v2 webhooks to signals d…
Browse files Browse the repository at this point in the history
…ocstring
  • Loading branch information
leetrout committed Feb 21, 2012
1 parent 8f3d54e commit 17845d2
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/zebra/configuration.rst
@@ -1,10 +1,11 @@
.. py:module:: zebra.config.options
Configuration
=============

There are several options for Zebra. To override any of these options simply
add them to your ``settings.py`` with the value your desire.

.. py:module:: zebra.config.options

-------------------------------------------------------------------------------

Expand Down
2 changes: 2 additions & 0 deletions docs/zebra/mixins.rst
@@ -1,3 +1,5 @@
.. py:module:: zebra.mixins
zebra.mixins
============

Expand Down
2 changes: 2 additions & 0 deletions docs/zebra/models.rst
@@ -1,3 +1,5 @@
.. py:module:: zebra.models
zebra.models
============

Expand Down
2 changes: 2 additions & 0 deletions docs/zebra/signals.rst
@@ -1,3 +1,5 @@
.. py:module:: zebra.signals
zebra.signals
=============

Expand Down
2 changes: 2 additions & 0 deletions docs/zebra/utils.rst
@@ -1,3 +1,5 @@
.. py:module:: zebra.utils
zebra.utils
===========

Expand Down
2 changes: 2 additions & 0 deletions docs/zebra/views.rst
@@ -1,3 +1,5 @@
.. py:module:: zebra.views
zebra.views
===========

Expand Down
35 changes: 35 additions & 0 deletions zebra/signals.py
@@ -1,12 +1,47 @@
"""
Provides the following signals:
V1
- zebra_webhook_recurring_payment_failed
- zebra_webhook_invoice_ready
- zebra_webhook_recurring_payment_succeeded
- zebra_webhook_subscription_trial_ending
- zebra_webhook_subscription_final_payment_attempt_failed
- zebra_webhook_subscription_ping_sent
v2
- zebra_webhook_charge_succeeded
- zebra_webhook_charge_failed
- zebra_webhook_charge_refunded
- zebra_webhook_charge_disputed
- zebra_webhook_customer_created
- zebra_webhook_customer_updated
- zebra_webhook_customer_deleted
- zebra_webhook_customer_subscription_created
- zebra_webhook_customer_subscription_updated
- zebra_webhook_customer_subscription_deleted
- zebra_webhook_customer_subscription_trial_will_end
- zebra_webhook_customer_discount_created
- zebra_webhook_customer_discount_updated
- zebra_webhook_customer_discount_deleted
- zebra_webhook_invoice_created
- zebra_webhook_invoice_updated
- zebra_webhook_invoice_payment_succeeded
- zebra_webhook_invoice_payment_failed
- zebra_webhook_invoiceitem_created
- zebra_webhook_invoiceitem_updated
- zebra_webhook_invoiceitem_deleted
- zebra_webhook_plan_created
- zebra_webhook_plan_updated
- zebra_webhook_plan_deleted
- zebra_webhook_coupon_created
- zebra_webhook_coupon_updated
- zebra_webhook_coupon_deleted
- zebra_webhook_transfer_created
- zebra_webhook_transfer_failed
- zebra_webhook_ping
"""
import django.dispatch

Expand Down

0 comments on commit 17845d2

Please sign in to comment.