Eun changhyun

Results 4 issues of Eun changhyun

I do not find exact reason or situation. But when I save cropped image, it sometimes save wrong data. More detail, it save (X,Y) smaller than (X,Y) in admin page....

@member_router.get('', response={200: Member, 401: AuthenticationError}, auth=AuthBearer()) Above code is not working beacuase of AuthenticationError which is not inherited from BaseModel(pydantic) I hope there should be a exception class inheried from...

**Describe the bug** QueryParam is not working on test from ninja.testing import TestClient ``` response = client.get( "", data={"meta_type": EducationMetaType.DOMESTIC, "search_text": "text"}, content_type='application/json' ) ``` ``` response = client.get( "",...

Here is the def @nick_name_router.get( path="", response={200: MemberDuplicationOutSchema}, ) def api_nick_name_duplication_check(request: Router, nickname: str) -> APIResponse[MemberDuplicationOutSchema]: is_exists: StrictBool = MemberRegisterApp().is_nickname_able(nick_name=nickname) return MemberDuplicationOutSchema(is_able=not is_exists) and test def is below def test_api_register_member_wanted_info(self):...