We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 116d0cc commit da98010Copy full SHA for da98010
src/main/java/com/example/log4u/domain/supports/service/SupportService.java
@@ -26,6 +26,7 @@ public void createSupport(SupportCreateRequestDto supportCreateRequestDto) {
26
supportRepository.save(support);
27
}
28
29
+ @Transactional(readOnly = true)
30
public Page<SupportOverviewGetResponseDto> getSupportPage(
31
Integer page,
32
SupportType supportType
@@ -35,6 +36,7 @@ public Page<SupportOverviewGetResponseDto> getSupportPage(
35
36
return supportQuerydsl.getSupportOverviewGetResponseDtoPage(pageable, supportType);
37
38
39
40
public SupportGetResponseDto getSupportById(Long supportId) {
41
return supportQuerydsl.getSupportGetResponseDtoById(supportId);
42
0 commit comments