From 4a35f84e95ab219f9b25b4f9aadd75fddd20898f Mon Sep 17 00:00:00 2001 From: Tiago vasconcelos Date: Thu, 10 Feb 2022 16:44:47 +0000 Subject: [PATCH 1/2] fix admin default false --- lnbits/core/crud.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lnbits/core/crud.py b/lnbits/core/crud.py index e1539212e..62e5a7bf3 100644 --- a/lnbits/core/crud.py +++ b/lnbits/core/crud.py @@ -57,12 +57,13 @@ async def get_user(user_id: str, conn: Optional[Connection] = None) -> Optional[ else: return None + print("IS_ADMIN", user["id"] in [x.strip() for x in LNBITS_ADMIN_USERS] if LNBITS_ADMIN_USERS else False) return User( id=user["id"], email=user["email"], extensions=[e[0] for e in extensions], wallets=[Wallet(**w) for w in wallets], - admin=LNBITS_ADMIN_USERS and user["id"] in [x.strip() for x in LNBITS_ADMIN_USERS] + admin=user["id"] in [x.strip() for x in LNBITS_ADMIN_USERS] if LNBITS_ADMIN_USERS else False ) From 6d580271478527002ac35541990e663164937f3f Mon Sep 17 00:00:00 2001 From: Tiago vasconcelos Date: Thu, 10 Feb 2022 17:06:15 +0000 Subject: [PATCH 2/2] remove print --- lnbits/core/crud.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lnbits/core/crud.py b/lnbits/core/crud.py index 62e5a7bf3..0669ad03e 100644 --- a/lnbits/core/crud.py +++ b/lnbits/core/crud.py @@ -57,7 +57,6 @@ async def get_user(user_id: str, conn: Optional[Connection] = None) -> Optional[ else: return None - print("IS_ADMIN", user["id"] in [x.strip() for x in LNBITS_ADMIN_USERS] if LNBITS_ADMIN_USERS else False) return User( id=user["id"], email=user["email"],