Skip to content

Commit

Permalink
Minor Tweak to PalisadoesFoundation#400
Browse files Browse the repository at this point in the history
__Issue__: Needed to update grammar for access token function in
`api/web/__init__`.

Resolves: PalisadoesFoundation#400
  • Loading branch information
Dev-Dominic committed Oct 31, 2020
1 parent e699e6c commit 2ac0ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pattoo/api/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# Getting pattoo configuration and setting JWT secrete key
config = Config()
PATTOO_API_WEB.config['JWT_SECRET_KEY'] = config.jwt_secret_key()
PATTOO_API_WEB.config['JWT_ACCESS_TOKEN_EXPIRES'] = config.acesss_token_exp()
PATTOO_API_WEB.config['JWT_ACCESS_TOKEN_EXPIRES'] = config.access_token_exp()
PATTOO_API_WEB.config['JWT_REFRESH_TOKEN_EXPIRES'] = config.refresh_token_exp()

# Initialize authentication for pattoo api web flask app instance
Expand Down

0 comments on commit 2ac0ad6

Please sign in to comment.