summaryrefslogtreecommitdiffstats
path: root/restaurant_orders/wordpress_integration/urls.py
blob: 2489b9a6b27cdbdd5ab52e24453acf12eac2f054 (plain)
1
2
3
4
5
6
7
8
from wordpress_integration.views import webhook
from django.urls import path

app_name = 'wordpress_integration'

urlpatterns = [
    path('<int:restaurant_pk>/', webhook, name='webhook'),
]