Skip to content

Commit

Permalink
hotfix:search API에 capacityType추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JjungminLee committed Oct 17, 2023
1 parent e4e83b6 commit 8c31840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.onna.onnaback.domain.place.adapter.in.web.response;

import com.onna.onnaback.domain.place.domain.PlaceType;
import com.onna.onnaback.domain.spark.domain.CapacityType;
import lombok.Builder;
import lombok.Getter;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ public List<SparkResponse> searchSpark(String value) {
.placeId(spark.getPlace().getPlaceId())
.placeName(spark.getPlace().getName())
.img(spark.getImg())
.capacityType(spark.getCapacityType())
.build()
).collect(Collectors.toList());
}
Expand Down

0 comments on commit 8c31840

Please sign in to comment.