change link url as well

This commit is contained in:
callebtc 2023-01-05 13:44:57 +01:00
parent 9e953bc3e1
commit 4dc94bba7d
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ from .crud import increment_pay_link
name="lnurlp.api_lnurl_response.deprecated",
)
@lnurlp_ext.get(
"/a/{link_id}",
"/{link_id}",
status_code=HTTPStatus.OK,
name="lnurlp.api_lnurl_response",
)

View file

@ -17,7 +17,7 @@ var mapPayLink = obj => {
)
obj.amount = new Intl.NumberFormat(LOCALE).format(obj.amount)
obj.print_url = [locationPath, 'print/', obj.id].join('')
obj.pay_url = [locationPath, obj.id].join('')
obj.pay_url = [locationPath, 'link/', obj.id].join('')
return obj
}

View file

@ -21,7 +21,7 @@ async def index(request: Request, user: User = Depends(check_user_exists)):
)
@lnurlp_ext.get("/{link_id}", response_class=HTMLResponse)
@lnurlp_ext.get("/link/{link_id}", response_class=HTMLResponse)
async def display(request: Request, link_id):
link = await get_pay_link(link_id)
if not link: