formatting head
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
from django.urls import path
|
||||
from .views import CreateRoom, GetRoom, LeaveRoom, RoomsView, JoinRoom, UpdateRoom, UserInRoom
|
||||
|
||||
urlpatterns = [
|
||||
path('rooms/', RoomsView.as_view()),
|
||||
path('create-room/', CreateRoom.as_view()),
|
||||
path('join-room/', JoinRoom.as_view()),
|
||||
path('get-room/', GetRoom.as_view()),
|
||||
path('user-in-room/', UserInRoom.as_view()),
|
||||
path('leave-room/', LeaveRoom.as_view()),
|
||||
path('update-room/', UpdateRoom.as_view()),
|
||||
]
|
||||
Reference in New Issue
Block a user