Skip to content

Commit

Permalink
Fix: 폼 데이터 요청 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
joy-river committed Aug 19, 2024
1 parent 48cedbb commit 947b053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KUA/student/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ def post(self, request, *args, **kwargs):
operation_summary="이미지 조회하기",
operation_description="이미지 이름과 태그로 이미지를 가져옵니다.",
manual_parameters=[
openapi.Parameter('name', openapi.IN_FORM, type=openapi.TYPE_STRING, description='이미지 이름'),
openapi.Parameter('tag', openapi.IN_FORM, type=openapi.TYPE_STRING, description='이미지 태그'),
openapi.Parameter('name', openapi.IN_QUERY, type=openapi.TYPE_STRING, description='이미지 이름'),
openapi.Parameter('tag', openapi.IN_QUERY, type=openapi.TYPE_STRING, description='이미지 태그'),
],
responses={
201: openapi.Response(description="Success"),
Expand Down

0 comments on commit 947b053

Please sign in to comment.