import os basedir = os.path.abspath(os.path.dirname(__file__)) postgres_local_base = "postgresql://localhost/db" class Config(object): DEBUG = False TESTING = False CSRF_ENABLED = True SECRET_KEY = os.getenv("SECRET_KEY", "secret") SQLALCHEMY_TRACK_MODIFICATIONS = False BCRYPT_LOG_RO...
"prefer-stable": true, "require": { "php": ">=8.1", "ext-ctype": "*", "ext-iconv": "*", "api-platform/core": "^3.1", "doctrine/doctrine-bundle": "^2.10", "doctrine/doctrine-migrations-bundle": "^3.2", "doctrine/orm": "^2.16", "lexik/jwt-authentication-bundle": "*", ...
@garrettahines1 quarkus.smallrye-jwt.enabled=true does not mean that a token must be available, it is set to true by default and can be set to false to disable the whole module functionality. If you need to ensure that only the requests with the vaild tokens can go through (and restrict...
// Check if the current scopes permit JWT token use booleanhasJwtEnabledScope=false; for(Stringscope:getJwtEnabledScopes()){ if(getScopesToApply().contains(scope)){ hasJwtEnabledScope=true; break; } } // Use JWT tokens when using a service account with an appropriate scope. if(credentials...
booleanhasJwtEnabledScope=false; for(Stringscope:getJwtEnabledScopes()){ if(getScopesToApply().contains(scope)){ hasJwtEnabledScope=true; break; } } // Use JWT tokens when using a service account with an appropriate scope. if(credentialsinstanceofServiceAccountCredentials&&hasJwtEnabledScope){ ...