robosats/api/urls.py

10 lines
407 B
Python
Raw Normal View History

from django.urls import path
from .views import OrderMakerView, OrderView, UserView, BookView, get_currencies_json
urlpatterns = [
path('make/', OrderMakerView.as_view()),
2022-01-08 11:51:55 +00:00
path('order/', OrderView.as_view({'get':'get','post':'take_update_confirm_dispute_cancel'})),
path('usergen/', UserView.as_view()),
path('book/', BookView.as_view()),
path('currencies/', get_currencies_json),
]