Adding websockets for panel (trying at least)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from quart import g, abort, render_template, jsonify
|
||||
from quart import g, abort, render_template, jsonify, websocket
|
||||
from http import HTTPStatus
|
||||
|
||||
from lnbits.decorators import check_user_exists, validate_uuids
|
||||
@@ -6,7 +6,6 @@ from lnbits.decorators import check_user_exists, validate_uuids
|
||||
from . import copilot_ext
|
||||
from .crud import get_copilot
|
||||
|
||||
|
||||
@copilot_ext.route("/")
|
||||
@validate_uuids(["usr"], required=True)
|
||||
@check_user_exists()
|
||||
@@ -26,4 +25,10 @@ async def panel(copilot_id):
|
||||
copilot = await get_copilot(copilot_id) or abort(
|
||||
HTTPStatus.NOT_FOUND, "Copilot link does not exist."
|
||||
)
|
||||
return await render_template("copilot/panel.html", copilot=copilot)
|
||||
return await render_template("copilot/panel.html", copilot=copilot)
|
||||
|
||||
@copilot_ext.websocket('/ws/<copilot_id>')
|
||||
async def ws():
|
||||
while True:
|
||||
data = await websocket.receive()
|
||||
await websocket.send(f"echo {data}")
|
||||
Reference in New Issue
Block a user