mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 20:21:35 +00:00
16 lines
451 B
Python
16 lines
451 B
Python
from django.urls import path
|
|
from .views import MakerView, OrderView, UserView, BookView, InfoView
|
|
|
|
urlpatterns = [
|
|
path("make/", MakerView.as_view()),
|
|
path("order/",OrderView.as_view({
|
|
"get": "get",
|
|
"post": "take_update_confirm_dispute_cancel"
|
|
}),
|
|
),
|
|
path("user/", UserView.as_view()),
|
|
path("book/", BookView.as_view()),
|
|
# path('robot/') # Profile Info
|
|
path("info/", InfoView.as_view()),
|
|
]
|