Skip to content

Instantly share code, notes, and snippets.

@DanyF-github
Created March 24, 2022 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanyF-github/2b1fac57a8ea53ae9bc225c4852648e0 to your computer and use it in GitHub Desktop.
Save DanyF-github/2b1fac57a8ea53ae9bc225c4852648e0 to your computer and use it in GitHub Desktop.
django.urls import path
from .views import inbound, status, lead_conversation_room
app_name = 'conversation'
urlpatterns = [
path('inbound/', inbound, name='conversation-inbound'),
path('status/', status, name='conversation-status'),
path('lead/<int:lead_id>/', lead_conversation_room, name="lead-conversation-room"),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment