dockered
This commit is contained in:
10
django/chat/urls.py
Normal file
10
django/chat/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import chat
|
||||
from .views import ask
|
||||
|
||||
urlpatterns = [
|
||||
path("", chat.ChannelView.as_view(), name="chats_page"),
|
||||
path("ask/", ask.AskView.as_view(), name="chats_ask"),
|
||||
path("ask/accept", ask.AskAcceptView.as_view(), name="chats_ask_accept"),
|
||||
]
|
Reference in New Issue
Block a user