mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
1757a9781a
* Notifications Endpoint * Fix tests * CR * Check tests * Fix Tests * Fix Chat * Remove unused notifications * Fix chat * Fix chat * Fix chat
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
from django.urls import path
|
|
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView
|
|
|
|
from chat.views import ChatView
|
|
|
|
from .views import (
|
|
BookView,
|
|
HistoricalView,
|
|
InfoView,
|
|
LimitView,
|
|
MakerView,
|
|
OrderView,
|
|
PriceView,
|
|
RewardView,
|
|
RobotView,
|
|
StealthView,
|
|
TickView,
|
|
NotificationsView,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path("schema/", SpectacularAPIView.as_view(), name="schema"),
|
|
path("", SpectacularRedocView.as_view(url_name="schema"), name="redoc"),
|
|
path("make/", MakerView.as_view(), name="make"),
|
|
path(
|
|
"order/",
|
|
OrderView.as_view({"get": "get", "post": "take_update_confirm_dispute_cancel"}),
|
|
name="order",
|
|
),
|
|
path("robot/", RobotView.as_view(), name="robot"),
|
|
path("book/", BookView.as_view(), name="book"),
|
|
path("info/", InfoView.as_view({"get": "get"}), name="info"),
|
|
path("price/", PriceView.as_view(), name="price"),
|
|
path("limits/", LimitView.as_view(), name="limits"),
|
|
path("reward/", RewardView.as_view(), name="reward"),
|
|
path("historical/", HistoricalView.as_view(), name="historical"),
|
|
path("ticks/", TickView.as_view(), name="ticks"),
|
|
path("stealth/", StealthView.as_view(), name="stealth"),
|
|
path("chat/", ChatView.as_view({"get": "get", "post": "post"}), name="chat"),
|
|
path("notifications/", NotificationsView.as_view(), name="notifications"),
|
|
]
|