lnbits-legend/lnbits/extensions/subdomains/views.py
2020-12-28 19:51:45 +01:00

12 lines
312 B
Python

from quart import g, render_template
from lnbits.decorators import check_user_exists, validate_uuids
from . import subdomains_ext
@subdomains_ext.route("/")
@validate_uuids(["usr"], required=True)
@check_user_exists()
async def index():
return await render_template("subdomains/index.html", user=g.user)