Skip to content

Commit

Permalink
Updated error in access token variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
turukawa committed Jan 10, 2023
1 parent 1c48491 commit a60a256
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Settings(BaseSettings):
API_V1_STR: str = "/api/v1"
SECRET_KEY: str = secrets.token_urlsafe(32)
# 60 minutes * 24 hours * 8 days = 8 days
ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 8
ACCESS_TOKEN_EXPIRE_SECONDS: int = 60 * 24 * 8
REFRESH_TOKEN_EXPIRE_SECONDS: int = 60 * 60 * 24 * 30
SERVER_NAME: str
SERVER_HOST: AnyHttpUrl
Expand Down

0 comments on commit a60a256

Please sign in to comment.