mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
13 lines
321 B
Python
13 lines
321 B
Python
|
from quart import g, render_template
|
||
|
|
||
|
from lnbits.decorators import check_user_exists, validate_uuids
|
||
|
|
||
|
from . import splitpayments_ext
|
||
|
|
||
|
|
||
|
@splitpayments_ext.route("/")
|
||
|
@validate_uuids(["usr"], required=True)
|
||
|
@check_user_exists()
|
||
|
async def index():
|
||
|
return await render_template("splitpayments/index.html", user=g.user)
|