Read gateway uri from env
This commit is contained in:
		@@ -10,7 +10,8 @@ from functools import wraps
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
page_oidc = Blueprint("oidc", __name__)
 | 
					page_oidc = Blueprint("oidc", __name__)
 | 
				
			||||||
db = MongoClient(const.MONGO_URI).get_default_database()
 | 
					db = MongoClient(const.MONGO_URI).get_default_database()
 | 
				
			||||||
metadata = requests.get("https://auth.codemowers.eu/.well-known/openid-configuration").json()
 | 
					gw_uri = os.getenv("OIDC_GATEWAY_URI")
 | 
				
			||||||
 | 
					metadata = requests.get(f"{gw_uri}.well-known/openid-configuration").json()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def login_required(f):
 | 
					def login_required(f):
 | 
				
			||||||
    @wraps(f)
 | 
					    @wraps(f)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user