general cleanup and unused imports removal
This commit is contained in:
@@ -8,9 +8,6 @@ from lnbits.decorators import check_user_exists
|
||||
|
||||
from . import watchonly_ext, watchonly_renderer
|
||||
|
||||
# from .crud import get_payment
|
||||
|
||||
|
||||
templates = Jinja2Templates(directory="templates")
|
||||
|
||||
|
||||
@@ -19,15 +16,3 @@ async def index(request: Request, user: User = Depends(check_user_exists)):
|
||||
return watchonly_renderer().TemplateResponse(
|
||||
"watchonly/index.html", {"request": request, "user": user.dict()}
|
||||
)
|
||||
|
||||
|
||||
# @watchonly_ext.get("/{charge_id}", response_class=HTMLResponse)
|
||||
# async def display(request: Request, charge_id):
|
||||
# link = get_payment(charge_id)
|
||||
# if not link:
|
||||
# raise HTTPException(
|
||||
# status_code=HTTPStatus.NOT_FOUND,
|
||||
# detail="Charge link does not exist."
|
||||
# )
|
||||
#
|
||||
# return watchonly_renderer().TemplateResponse("watchonly/display.html", {"request": request,"link": link.dict()})
|
||||
|
||||
Reference in New Issue
Block a user