@@ -50,7 +50,7 @@ def get_point_fields(request): |
||
50 | 50 |
return response(IsolationPointStatusCode.ISOLATIONPOINT_NOT_FOUND) |
51 | 51 |
|
52 | 52 |
try: |
53 |
- ipui = IsolationPointUserInfo.objects.get(user_id=user_id, point_id=point_id, status=True) |
|
53 |
+ ipui = IsolationPointUserInfo.objects.get(user_id=user_id, point_id=point_id) |
|
54 | 54 |
except IsolationPointUserInfo.DoesNotExist: |
55 | 55 |
ipui = None |
56 | 56 |
|