[feat] add user and add event
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = []
|
||||
urlpatterns = [
|
||||
path(
|
||||
"users/",
|
||||
include("api.users.urls", namespace="users"),
|
||||
),
|
||||
path(
|
||||
"events/",
|
||||
include("api.events.urls", namespace="events"),
|
||||
)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user