Skip to content

Commit

Permalink
refactor: 행사 생성 API EventSaveRequest name을 eventName으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kunsanglee committed Jul 24, 2024
1 parent a90eafc commit 1f0bb13
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ public record EventSaveRequest(

@NotBlank
@Size(min = 2, max = 20)
String name
String eventName
) {

public EventAppRequest toAppRequest() {
return new EventAppRequest(name);
return new EventAppRequest(eventName);
}
}

0 comments on commit 1f0bb13

Please sign in to comment.