diff options
author | Parker <contact@pkrm.dev> | 2024-11-04 21:00:42 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-04 21:00:42 -0600 |
commit | d4280d1fda2f4809274793e7bd49f484f57a883e (patch) | |
tree | 23085015b92d916d304968b396df8edceca037c5 /api/schemas | |
parent | 8ae8c5c454ba42e8f56f415d33bbaaac7d1a37ec (diff) |
Continue JWT implementation - add refresh token
Diffstat (limited to 'api/schemas')
-rw-r--r-- | api/schemas/auth_schemas.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/schemas/auth_schemas.py b/api/schemas/auth_schemas.py index d5b9a88..006a7c8 100644 --- a/api/schemas/auth_schemas.py +++ b/api/schemas/auth_schemas.py @@ -3,6 +3,7 @@ from pydantic import BaseModel class Token(BaseModel): access_token: str + refresh_token: str | None = None token_type: str |