We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d32f568 commit 07a84e4Copy full SHA for 07a84e4
1 file changed
src/main/java/ceos/backend/domain/retrospect/dto/response/GetRetrospectsElement.java
@@ -10,16 +10,14 @@
10
public class GetRetrospectsElement {
11
private Long id;
12
private String title;
13
- private String url;
14
- private String writer;
15
private Integer generation;
+ private String part;
16
17
public static GetRetrospectsElement fromEntity(Retrospect retrospect) {
18
return new GetRetrospectsElement(
19
retrospect.getId(),
20
retrospect.getTitle(),
21
- retrospect.getUrl(),
22
- retrospect.getWriter(),
23
- retrospect.getGeneration());
+ retrospect.getGeneration(),
+ retrospect.getPart().getPart());
24
}
25
0 commit comments