Fix routes for /garage

This commit is contained in:
Reckless_Satoshi 2024-11-10 08:51:47 +00:00
parent 3c3c09db02
commit ee2f659bd6
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -5,8 +5,8 @@ from .views import basic, pro
urlpatterns = [
path("", basic, name="basic"),
path("create/", basic),
path("robot/", basic),
path("robot/<token>", basic),
path("garage/", basic),
path("garage/<token>", basic),
path("offers/", basic),
path("order/<shortAlias>/<int:orderId>/", basic),
path("settings/", basic),