Remove /api/user endpoint from api.urls

This commit is contained in:
Reckless_Satoshi 2023-08-14 07:37:26 -07:00
parent 9db89606cb
commit eaca597522
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -15,7 +15,6 @@ from .views import (
RobotView,
StealthView,
TickView,
UserView,
)
urlpatterns = [
@ -26,7 +25,6 @@ urlpatterns = [
"order/",
OrderView.as_view({"get": "get", "post": "take_update_confirm_dispute_cancel"}),
),
path("user/", UserView.as_view()),
path("robot/", RobotView.as_view()),
path("book/", BookView.as_view()),
path("info/", InfoView.as_view()),