Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
client_max_body_size 10M;
client_max_body_size 50M;
}
}
EOF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ public record SelectPlaceChipResponse(

public static SelectPlaceChipResponse from(Place place) {
return new SelectPlaceChipResponse(place.getPlaceId(), place.getName(), place.getSubName(),
place.getAbbreviation(),
place.getContent(),
place.getLatitude(), place.getLongitude(), Collections.emptyList());
}

public static SelectPlaceChipResponse from(Place place,
List<SelectPlaceChipFriendListResponse> selectPlaceChipFriendListResponses) {
return new SelectPlaceChipResponse(place.getPlaceId(), place.getName(), place.getSubName(),
place.getAbbreviation(),
place.getContent(),
place.getLatitude(), place.getLongitude(), selectPlaceChipFriendListResponses);
}
}
2 changes: 1 addition & 1 deletion src/main/resources/config
Loading