updated for read vm realm
This commit is contained in:
parent
0cada8668a
commit
5ad871f124
2 changed files with 2 additions and 2 deletions
|
@ -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')
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue