ZinnaChoi / Study-Management

온라인 스터디 관리 시스템: 부재 일정 캘린더, 토론 게시판 및 알림 기능 제공
8 stars 0 forks source link

Task add absent register api #28

Closed ZinnaChoi closed 8 months ago

ZinnaChoi commented 8 months ago

안녕하세요 @dayeon-dayeon ! 부재일정 등록 API를 생성하였습니다

POST /api/v1/absent

테스트의 경우 AbsentControllerTest.java에서 확인 가능합니다

부재일정 등록 시 처리한 exception 목록

image

ExceptionUtil 생성

        } catch (NotFoundException e) {
            DTOResCommon res = ExceptionUtil.handleException(e);
            return new PostDetailRes(res.getSystemId(), res.getRetCode(), res.getRetMsg(), null);
        }

확인 부탁드립니다 감사합니다!