Files
lnbits/lnbits/extensions/lndhub/views.py
T
2020-09-12 21:55:13 -03:00

12 lines
317 B
Python

from flask import render_template, g
from lnbits.decorators import check_user_exists, validate_uuids
from lnbits.extensions.lndhub import lndhub_ext
@lndhub_ext.route("/")
@validate_uuids(["usr"], required=True)
@check_user_exists()
def lndhub_index():
return render_template("lndhub/index.html", user=g.user)