mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
c32ff1de59
* initial commit * add docs * black & prettier * mobile styles * add print view * prettier * make format * initial migrations un-messed * make migrations work for sqlite * add invoices table * clean migrations * add migration to conv * fix card size * hopefully fix test migration * add missing status * timestamp * init testing * remove draft invoice by default on create * what should i test * make format * raise if not invoice * new test and renaming * fix issue reported by @talvasconcelos which prevented users from setting status on creation * readme * run black * trying to make tests work * make it work again * send paid amount * partial pay flow * good coding * can't get these test to work * clean up and commenting * make format * validation for 2 decimals Co-authored-by: ben <ben@arc.wales> Co-authored-by: Tiago vasconcelos <talvasconcelos@gmail.com>
37 lines
858 B
Python
37 lines
858 B
Python
import asyncio
|
|
|
|
from fastapi import APIRouter
|
|
from starlette.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_invoices")
|
|
|
|
invoices_static_files = [
|
|
{
|
|
"path": "/invoices/static",
|
|
"app": StaticFiles(directory="lnbits/extensions/invoices/static"),
|
|
"name": "invoices_static",
|
|
}
|
|
]
|
|
|
|
invoices_ext: APIRouter = APIRouter(prefix="/invoices", tags=["invoices"])
|
|
|
|
|
|
def invoices_renderer():
|
|
return template_renderer(["lnbits/extensions/invoices/templates"])
|
|
|
|
|
|
from .tasks import wait_for_paid_invoices
|
|
|
|
|
|
def invoices_start():
|
|
loop = asyncio.get_event_loop()
|
|
loop.create_task(catch_everything_and_restart(wait_for_paid_invoices))
|
|
|
|
|
|
from .views import * # noqa
|
|
from .views_api import * # noqa
|