From c21f4b3dacd597a15a5ec39d525df1dfe1b70376 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Mon, 17 Jul 2023 01:47:57 +0200 Subject: Add project. --- restaurant_orders/wordpress_integration/urls.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 restaurant_orders/wordpress_integration/urls.py (limited to 'restaurant_orders/wordpress_integration/urls.py') 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 @@ +from wordpress_integration.views import webhook +from django.urls import path + +app_name = 'wordpress_integration' + +urlpatterns = [ + path('/', webhook, name='webhook'), +] -- cgit v1.2.3