Files @ a45e44a1f681
Branch filter:

Location: symposion_app/vendor/registripe/urls.py

James Polley
Merge branch 'notification_help' into 'master'

Correct list of tags available in notification templates.

See merge request LCA2018/symposion_app!25
from django.conf.urls import url

from registripe import views

from pinax.stripe.views import Webhook


urlpatterns = [
    url(r"^card/([0-9]*)/$", views.card, name="registripe_card"),
    url(r"^card/([0-9]*)/([0-9A-Za-z]*)/$", views.card,
        name="registripe_card"),
    url(r"^pubkey/$", views.pubkey_script, name="registripe_pubkey"),
    url(r"^refund/([0-9]*)/$", views.refund, name="registripe_refund"),
    url(r"^webhook/$", Webhook.as_view(), name="pinax_stripe_webhook"),
]