From 5c229b36df4e66789c749e62f2d189ad683f7a80 Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Mon, 27 Feb 2017 12:22:02 +0000 Subject: [PATCH] Fix module name typo in actions docs The `pinax.stripe.actions.customers` module is no longer referenced as `pinax.stripe.actions.customer`. --- docs/reference/actions.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/reference/actions.md b/docs/reference/actions.md index ad1dd8139..728651edf 100644 --- a/docs/reference/actions.md +++ b/docs/reference/actions.md @@ -58,7 +58,7 @@ Returns: `pinax.stripe.models.Charge` object ## Customers -#### pinax.stripe.actions.customer.can_charge +#### pinax.stripe.actions.customers.can_charge Can the given customer create a charge @@ -66,7 +66,7 @@ Args: - customer: a `pinax.stripe.models.Customer` object -#### pinax.stripe.actions.customer.create +#### pinax.stripe.actions.customers.create Creates a Stripe customer @@ -81,7 +81,7 @@ Args: Returns: `pinax.stripe.models.Customer` object that was created -#### pinax.stripe.actions.customer.get_customer_for_user +#### pinax.stripe.actions.customers.get_customer_for_user Get a customer object for a given user @@ -91,7 +91,7 @@ Args: Returns: `pinax.stripe.models.Customer` object -#### pinax.stripe.actions.customer.purge +#### pinax.stripe.actions.customers.purge Deletes the Stripe customer data and purges the linking of the transaction data to the Django user. @@ -100,7 +100,7 @@ Args: - customer: the `pinax.stripe.models.Customer` object to purge. -#### pinax.stripe.actions.customer.link_customer +#### pinax.stripe.actions.customers.link_customer Links a customer referenced in a webhook event message to the event object @@ -108,7 +108,7 @@ Args: - event: the `pinax.stripe.models.Event` object to link -#### pinax.stripe.actions.customer.set_default_source +#### pinax.stripe.actions.customers.set_default_source Sets the default payment source for a customer @@ -117,7 +117,7 @@ Args: - customer: a `pinax.stripe.models.Customer` object - source: the Stripe ID of the payment source -#### pinax.stripe.actions.customer.sync_customer +#### pinax.stripe.actions.customers.sync_customer Syncronizes a local Customer object with details from the Stripe API