Improve stability (#25)
* chore: increase log level * feat: secure relays endpoint * feat: add config for the extension * chore: update `min_lnbits_version` * chore: improve logging * fix: decrypt logic * chore: improve logs
This commit is contained in:
parent
16ae9d15a1
commit
a119c3836a
8 changed files with 220 additions and 193 deletions
|
|
@ -11,3 +11,15 @@ async def m001_initial(db):
|
|||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
async def m002_create_config_table(db):
|
||||
"""
|
||||
Allow the extension to persist and retrieve any number of config values.
|
||||
"""
|
||||
|
||||
await db.execute(
|
||||
"""CREATE TABLE nostrclient.config (
|
||||
json_data TEXT NOT NULL
|
||||
);"""
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue