Skip to content

Commit

Permalink
#82 chore : seq 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
rivkode committed Apr 26, 2024
1 parent 3de11e6 commit 9b7fdf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public ResponseEntity<String> createProject(@Valid @RequestBody CreateProjectReq
@Operation(summary = "프로젝트 수정", description = "요청된 정보에 따라 프로젝트가 수정됩니다.")
@PutMapping
public ResponseEntity<Void> updateProject(@Valid @RequestBody UpdateProjectRequest request, @LoginUser String userId) {

projectService.updateProject(userId, request);
return ResponseEntity.noContent().build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
@Builder
public record GetProjectResponse(
String projectId,
Long projectSequence,
String name,
String content,
String field,
Expand Down

0 comments on commit 9b7fdf2

Please sign in to comment.