mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-03 09:28:05 +02:00
feat: enforce order for charges ORDER BY "timestamp" DESC
This commit is contained in:
parent
ccae7876d9
commit
4fa8b5a292
@ -88,7 +88,8 @@ async def get_charge(charge_id: str) -> Charges:
|
||||
|
||||
async def get_charges(user: str) -> List[Charges]:
|
||||
rows = await db.fetchall(
|
||||
"""SELECT * FROM satspay.charges WHERE "user" = ?""", (user,)
|
||||
"""SELECT * FROM satspay.charges WHERE "user" = ? ORDER BY "timestamp" DESC """,
|
||||
(user,),
|
||||
)
|
||||
return [Charges.from_row(row) for row in rows]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user