Skip to content

Commit

Permalink
chore: 모델 프로필 조회 API
Browse files Browse the repository at this point in the history
  • Loading branch information
daeun084 committed Feb 17, 2024
1 parent ba6df71 commit 14973d7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public ApiResponse updateModelProfile (@RequestBody ModelProfileDto modelProfile
@Operation(summary = "모델 프로필 관리 조회(수정 전 정보 불러오기 용)")
@GetMapping("/mypage/profile/model/{userId}")
public ApiResponse getModelProfile (@PathVariable Long userId){
modelService.getModelProfile(userId);
return ApiResponse.SuccessResponse(SuccessStatus.MODEL_PROFILE_UPDATE);
return ApiResponse.SuccessResponse(SuccessStatus.MODEL_PROFILE_GET, modelService.getModelProfile(userId));
}

/**favorite**/
Expand Down

0 comments on commit 14973d7

Please sign in to comment.