summaryrefslogtreecommitdiffstats
path: root/restaurant_orders/wordpress_integration/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'restaurant_orders/wordpress_integration/urls.py')
-rw-r--r--restaurant_orders/wordpress_integration/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/restaurant_orders/wordpress_integration/urls.py b/restaurant_orders/wordpress_integration/urls.py
new file mode 100644
index 0000000..2489b9a
--- /dev/null
+++ b/restaurant_orders/wordpress_integration/urls.py
@@ -0,0 +1,8 @@
1from wordpress_integration.views import webhook
2from django.urls import path
3
4app_name = 'wordpress_integration'
5
6urlpatterns = [
7 path('<int:restaurant_pk>/', webhook, name='webhook'),
8]