mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
This commit is not exhaustive, and it is a trend in this codebase to not use StaticFiles() and instead use relative paths. This means the code cannot run anywhere other than the source code directory, as it will not find the files it is looking for
35 lines
956 B
Python
35 lines
956 B
Python
import asyncio
|
|
|
|
from fastapi import APIRouter
|
|
from fastapi.staticfiles import StaticFiles
|
|
|
|
from lnbits.db import Database
|
|
from lnbits.helpers import template_renderer
|
|
from lnbits.tasks import catch_everything_and_restart
|
|
|
|
db = Database("ext_splitpayments")
|
|
|
|
splitpayments_static_files = [
|
|
{
|
|
"path": "/splitpayments/static",
|
|
"app": StaticFiles(packages=[("lnbits", "extensions/splitpayments/static")]),
|
|
"name": "splitpayments_static",
|
|
}
|
|
]
|
|
splitpayments_ext: APIRouter = APIRouter(
|
|
prefix="/splitpayments", tags=["splitpayments"]
|
|
)
|
|
|
|
|
|
def splitpayments_renderer():
|
|
return template_renderer([StaticFiles(packages=[("lnbits", "extensions/splitpayments/static/templates")])])
|
|
|
|
|
|
from .tasks import wait_for_paid_invoices
|
|
from .views import * # noqa
|
|
from .views_api import * # noqa
|
|
|
|
|
|
def splitpayments_start():
|
|
loop = asyncio.get_event_loop()
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|