updated for read vm realm

This commit is contained in:
wcolmenares 2019-05-16 16:35:44 -04:00
parent 0cada8668a
commit 5ad871f124
2 changed files with 2 additions and 2 deletions

View File

@ -721,7 +721,7 @@ X_FRAME_OPTIONS = ('SAMEORIGIN' if X_FRAME_OPTIONS_ALLOW_FROM_URI is None else
DEBUG = bool_env('DEBUG')
ACCOUNT_NAME = env('ACCOUNT_NAME')
READ_VM_REALM = env('READ_VM_REALM')
AUTH_NAME = env('AUTH_NAME')
AUTH_SEED = env('AUTH_SEED')
AUTH_REALM = env('AUTH_REALM')

View File

@ -1773,7 +1773,7 @@ class CheckUserVM(APIView):
user = request.data['user']
realm = request.data['realm']
token = request.data['token']
if user != settings.ACCOUNT_NAME:
if realm != settings.READ_VM_REALM:
return Response("User not allowed", 403)
response = check_otp(user, realm, token)
if response != 200: