feat(home/urls.py): add home urls
This commit is contained in:
7
home/urls.py
Normal file
7
home/urls.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
from django.urls import path
|
||||||
|
from . import views
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
path("chat/", views.user_chat, name="user_chat"),
|
||||||
|
path("chat/send/<int:user_id>/", views.user_chat_send, name="user_chat_send"),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user