Files
westfarn 58258f2875
Deploy Beta / unit-tests (push) Successful in 10s
Deploy Beta / docker (push) Successful in 15s
Deploy Beta / deploy-beta (push) Successful in 1m40s
Instrument webhooks, fix compose layout, and ship social connect.
Add Grafana-friendly webhook request logging, Quill overflow fix, New Contact flow, in-place postcard campaign compose, and functional social account connect + composer.
2026-08-10 05:15:49 -05:00

13 lines
320 B
Python

from django.urls import path
from contacts import views
app_name = "contacts"
urlpatterns = [
path("", views.contact_list, name="list"),
path("new/", views.contact_create, name="create"),
path("import/", views.contact_import, name="import"),
path("<uuid:pk>/", views.contact_detail, name="detail"),
]