Showing the frontend and backend version in the settings panel.

Bumped the version to 7.6.0
This commit is contained in:
2020-10-07 23:27:54 +05:30
parent 7463846282
commit 438a98334d
10 changed files with 19 additions and 2 deletions

1
brewman/__version__.py Normal file
View File

@ -0,0 +1 @@
__version__ = "7.6.0"

View File

@ -14,6 +14,7 @@ from fastapi.responses import JSONResponse
from fastapi.security import OAuth2PasswordRequestForm
from sqlalchemy.orm import Session
from .. import __version__
from ..core.config import settings
from ..core.security import (
Token,
@ -85,6 +86,7 @@ async def login_for_access_token(
),
"userId": str(user.id),
"lockedOut": user.locked_out,
"ver": __version__.__version__,
},
expires_delta=access_token_expires,
)
@ -100,6 +102,7 @@ async def refresh_token(user: UserToken = Security(get_current_active_user)):
"scopes": user.permissions,
"userId": str(user.id_),
"lockedOut": user.locked_out,
"ver": __version__.__version__,
},
expires_delta=access_token_expires,
)