mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 14:51:05 +01:00
21 lines
610 B
Python
21 lines
610 B
Python
from flask import g, abort, render_template
|
|
|
|
from lnbits.decorators import check_user_exists, validate_uuids
|
|
from lnbits.helpers import Status
|
|
|
|
from lnbits.extensions.paywall import paywall_ext
|
|
from .crud import get_paywall
|
|
|
|
|
|
@paywall_ext.route("/")
|
|
@validate_uuids(["usr"], required=True)
|
|
@check_user_exists()
|
|
def index():
|
|
return render_template("paywall/index.html", user=g.user)
|
|
|
|
|
|
@paywall_ext.route("/<paywall_id>")
|
|
def display(paywall_id):
|
|
paywall = get_paywall(paywall_id) or abort(Status.NOT_FOUND, "Paywall does not exist.")
|
|
|
|
return render_template("paywall/display.html", paywall=paywall)
|