Skip to content

Commit b1df9c8

Browse files
committed
누락 키워드 수정
1 parent ef805df commit b1df9c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

payment/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def post(self, request):
5959

6060
class PaymentSuccessApi(APIView):
6161
def post(self, request):
62-
if not request.is_authenticated:
62+
if not request.user.is_authenticated:
6363
return Response({"msg": "not logged in user"}, status=400)
6464

6565
payment_key = request.data["merchant_uid"]

0 commit comments

Comments
 (0)