39491-vm/core/urls.py
Flatlogic Bot db8313c88e V2
2026-04-05 20:23:53 +00:00

12 lines
489 B
Python

from django.urls import path
from .views import conversation_detail, create_profile, home, react_message, start_conversation
urlpatterns = [
path("", home, name="home"),
path("profiles/create/", create_profile, name="create_profile"),
path("conversations/start/", start_conversation, name="start_conversation"),
path("conversations/<int:pk>/", conversation_detail, name="conversation_detail"),
path("messages/<int:pk>/react/", react_message, name="react_message"),
]