Skip to content

Commit

Permalink
[Fix] wifi 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
dahyunnee committed Jun 19, 2023
1 parent c97dd26 commit b3fcdb2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,5 @@ public class FilteringPlaceResponse {
private List<String> hashtags;
private String location;
private String imageURL;
private Map<String, Object> wifi;

}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class OnePlaceInfoResponse {
private String location;
private List<String> imageURLs;
private Map<String, Object> distance;
private Map<String, Object> wifi;

public static OnePlaceInfoResponse createOnePlaceInfoResponse (SpaceInfo spaceInfo) {
return OnePlaceInfoResponse.builder()
Expand All @@ -55,7 +54,6 @@ public static OnePlaceInfoResponse createOnePlaceInfoResponse (SpaceInfo spaceIn
spaceInfo.getHdmiScreen()
))
.distance(spaceInfo.getDistance())
.wifi(spaceInfo.getWifi())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ public List<FilteringPlaceResponse> findSpaceByProperties(Space space, String ar
placeReturnDTO.setHashtags(spaceInfo.getHashTags());
placeReturnDTO.setLocation(spaceInfo.getLocationRoadName());
placeReturnDTO.setImageURL(spaceInfo.getImageURLs().get(0));
placeReturnDTO.setWifi(spaceInfo.getWifi());

spaceReturnList.add(placeReturnDTO);
}
Expand Down

0 comments on commit b3fcdb2

Please sign in to comment.