Stripe: Removed global webhook, added test for webhook

This commit is contained in:
Raphael Michel
2016-09-01 14:19:53 +02:00
parent 4356ee6e46
commit 5aa7740c45
4 changed files with 144 additions and 15 deletions

View File

@@ -2,12 +2,6 @@ from django.conf.urls import include, url
from .views import webhook
urlpatterns = [
url(r'^stripe/', include([
url(r'^webhook/$', webhook, name='webhook'),
])),
]
event_patterns = [
url(r'^stripe/', include([
url(r'^webhook/$', webhook, name='webhook'),