Convert to RealPhone.verified_objects

This commit is contained in:
John Whitlock 2024-09-16 15:13:35 -05:00
Родитель eaca43bfb6
Коммит fd9203fdda
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 082C735D154FB750
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1168,7 +1168,7 @@ def outbound_call(request):
{"detail": "Requires outbound_phone waffle flag."}, status=403
)
try:
real_phone = RealPhone.objects.get(user=request.user, verified=True)
real_phone = RealPhone.verified_objects.get_for_user(user=request.user)
except RealPhone.DoesNotExist:
return response.Response(
{"detail": "Requires a verified real phone and phone mask."}, status=400