Compare commits
107
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b6f453388 | ||
|
|
307100fabe | ||
|
|
32379687ab | ||
|
|
aeb7735e51 | ||
|
|
2ef3894f74 | ||
|
|
73f2c863eb | ||
|
|
d1be79052f | ||
|
|
28341dedfa | ||
|
|
0b89c75386 | ||
|
|
e1827e33ad | ||
|
|
ff109aab87 | ||
|
|
84dfb5b3e9 | ||
|
|
ef5ac2af64 | ||
|
|
b13b3b9b92 | ||
|
|
053671b10f | ||
|
|
bf146c82b3 | ||
|
|
44dd0e1570 | ||
|
|
9d6069a043 | ||
|
|
e0fc3c89d1 | ||
|
|
77606a9fc1 | ||
|
|
1d5c6ac601 | ||
|
|
95adf7bfbb | ||
|
|
d13046efbf | ||
|
|
0d969ec624 | ||
|
|
3150ae7be1 | ||
|
|
4b8fca43cf | ||
|
|
a0901a33ca | ||
|
|
0e30dbc2af | ||
|
|
5d231b0c9e | ||
|
|
90600da5a5 | ||
|
|
8fee8425a8 | ||
|
|
28024e0608 | ||
|
|
236f8e44b6 | ||
|
|
f3cdf85f3b | ||
|
|
da412a2321 | ||
|
|
385b3920d4 | ||
|
|
6887d949c7 | ||
|
|
ab9e68741d | ||
|
|
17a7b5abab | ||
|
|
9abced4eee | ||
|
|
2a8a878fea | ||
|
|
d1ebfdddac | ||
|
|
118fbd46f3 | ||
|
|
233d2c5e71 | ||
|
|
daf088b4ec | ||
|
|
1b03d8195d | ||
|
|
84e68e0fc3 | ||
|
|
c3fb049fa6 | ||
|
|
487af32ccb | ||
|
|
f20bd17321 | ||
|
|
368dcf1231 | ||
|
|
e1437c0c0f | ||
|
|
8135b15404 | ||
|
|
62c651b3f2 | ||
|
|
d5ee044454 | ||
|
|
55f244ed4e | ||
|
|
727d5fec8d | ||
|
|
feb90088ec | ||
|
|
63050dbbbd | ||
|
|
4cba73c183 | ||
|
|
d1b795556e | ||
|
|
21f88d15e8 | ||
|
|
46e31e35cd | ||
|
|
6cd2746078 | ||
|
|
b4ebbc36fe | ||
|
|
c519d86e57 | ||
|
|
b28d2bd9b1 | ||
|
|
2b791d1c23 | ||
|
|
b74b75d303 | ||
|
|
f7991e5231 | ||
|
|
e5e14ca2ad | ||
|
|
97a1a0b303 | ||
|
|
9c0035c01d | ||
|
|
7614c83fe8 | ||
|
|
21a517e34f | ||
|
|
f42f973032 | ||
|
|
49a0bd9a1d | ||
|
|
8a726ddaa0 | ||
|
|
c4ee44ed4b | ||
|
|
5fe4752ebf | ||
|
|
faa2b930ba | ||
|
|
fbc39bf423 | ||
|
|
d6236964be | ||
|
|
60e4952b7f | ||
|
|
412736631c | ||
|
|
5187731c76 | ||
|
|
4a3d019660 | ||
|
|
6e2099cb4f | ||
|
|
07327a5b57 | ||
|
|
24b76f67aa | ||
|
|
7a071163cc | ||
|
|
1a5dc0da67 | ||
|
|
4444f7a897 | ||
|
|
516b01c6eb | ||
|
|
73bc5ddc16 | ||
|
|
814d7bf45b | ||
|
|
5e17e5e13d | ||
|
|
6223100591 | ||
|
|
989cd08614 | ||
|
|
c426c23567 | ||
|
|
23b22e89c7 | ||
|
|
8425e7467e | ||
|
|
42afbc0576 | ||
|
|
937b9cb5f1 | ||
|
|
73c4d1b409 | ||
|
|
04a6ed5ba1 | ||
|
|
e39384b3c8 |
@@ -528,6 +528,11 @@ def register_async_tasks() -> None:
|
||||
task_manager.create_permanent_task(process_next_notification)
|
||||
task_manager.create_permanent_task(process_next_audit_entry)
|
||||
|
||||
async def dispatch_extension_invoice_paid(payment) -> None:
|
||||
await dispatch_wasm_invoice_paid(payment)
|
||||
|
||||
core_app_extra.dispatch_extension_invoice_paid = dispatch_extension_invoice_paid
|
||||
|
||||
# server logs for websocket
|
||||
if settings.lnbits_admin_ui:
|
||||
server_log_task = initialize_server_websocket_logger()
|
||||
|
||||
@@ -6,7 +6,8 @@ import json
|
||||
import os
|
||||
import shutil
|
||||
import zipfile
|
||||
from pathlib import Path
|
||||
from collections.abc import Mapping
|
||||
from pathlib import Path, PurePosixPath
|
||||
from typing import Any
|
||||
|
||||
import httpx
|
||||
|
||||
@@ -6,7 +6,6 @@ from lnbits.core.crud import create_audit_entry
|
||||
from lnbits.core.crud.payments import get_payments_status_count
|
||||
from lnbits.core.crud.users import get_accounts
|
||||
from lnbits.core.crud.wallets import get_wallets_count
|
||||
from lnbits.core.db import core_app_extra
|
||||
from lnbits.core.models.audit import AuditEntry
|
||||
from lnbits.core.models.extensions import InstallableExtension
|
||||
from lnbits.core.models.notifications import NotificationType
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user