mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
76a45bc8d5
Added the Order model with a rough approxiation to the fields needed. The field status can be read lineally as the progression trough the app pipeline. The view serves POSTs requests to enter new orders into the db.
6 lines
119 B
Python
6 lines
119 B
Python
from django.urls import path
|
|
from .views import MakeOrder
|
|
|
|
urlpatterns = [
|
|
path('make/', MakeOrder.as_view())
|
|
] |