mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
e6ddcf9e4b
* Add RobotTokenSHA256 middleware for in-the-fly robot generation/login * Add RobotView, fix middleware, upgrade frontend * Token header as base91 * Add OAS schema of RobotView * Use RobotView on new fetchRobot(), mimick old fetchRobot() functionality * Upgrade websockets for token based authentication * Small fixes * Add frontend token entropy checks, add token on route /robot/<token> * Rename admin panel * Collect phrases
16 lines
331 B
Python
16 lines
331 B
Python
from django.urls import path
|
|
|
|
from .views import basic, pro
|
|
|
|
urlpatterns = [
|
|
path("", basic),
|
|
path("create/", basic),
|
|
path("robot/", basic),
|
|
path("robot/<token>", basic),
|
|
path("offers/", basic),
|
|
path("order/<int:orderId>", basic),
|
|
path("settings/", basic),
|
|
path("", basic),
|
|
path("pro/", pro),
|
|
]
|