sample Docker/-compose file
This commit is contained in:
@@ -11,7 +11,7 @@ import os
|
||||
# openssl rand -hex 32
|
||||
|
||||
scopes_db = {
|
||||
os.environ['ADMIN_EMAIL'] : ["admin"]
|
||||
os.environ.get('ADMIN_EMAIL', "") : ["admin"]
|
||||
}
|
||||
|
||||
credentials_exception = HTTPException(
|
||||
@@ -22,6 +22,10 @@ credentials_exception = HTTPException(
|
||||
async def get_current_user(
|
||||
security_scopes: SecurityScopes, request: Request
|
||||
):
|
||||
|
||||
if os.environ.get("NO_LOGIN", "").lower() == "true":
|
||||
return {"sub": "test"}
|
||||
|
||||
try:
|
||||
username: str = request.headers.get("x-auth-request-user") # type: ignore
|
||||
if username is None:
|
||||
|
||||
Reference in New Issue
Block a user