Skip to content

Commit

Permalink
Merge pull request #76 from HAB-DAY/fix/addUrl
Browse files Browse the repository at this point in the history
Fix/add url
  • Loading branch information
abi-hong authored Aug 25, 2023
2 parents 09e35a1 + dc4dcfc commit 53f7b3d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Binary file added keystore.p12
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public ResponseEntity<CommonResponse> showFundingDday(@RequestHeader("") String
.orElseThrow(() -> new CustomException(NO_MEMBER_ID));

Long leftday = fundingService.getBirthdayLeft(member);
ShowFundingDdayResponseDto responseDto = new ShowFundingDdayResponseDto(member.getName(), leftday);
ShowFundingDdayResponseDto responseDto = new ShowFundingDdayResponseDto(member.getName(), leftday, member.getBirthday());

return CommonResponse.toResponse(SHOW_NAME_BIRTHDAY_LEFT, responseDto);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
public class ShowFundingDdayResponseDto {
private String name;
private Long leftday;
private String birthday;

@Builder
public ShowFundingDdayResponseDto(String name, Long leftday){
public ShowFundingDdayResponseDto(String name, Long leftday, String birthday){
this.name = name;
this.leftday = leftday;
this.birthday = birthday;
}
}
7 changes: 6 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,9 @@ spring.mail.properties.mail.smtp.auth=true
#spring.security.oauth2.client.provider.naver.user-name-attribute=response

spring.servlet.multipart.maxFileSize=10MB
spring.servlet.multipart.maxRequestSize=10MB
spring.servlet.multipart.maxRequestSize=10MB

#https
server.ssl.key-store:keystore.p12
server.ssl.key-store-type=PKCS12
server.ssl.key-store-password=202308

0 comments on commit 53f7b3d

Please sign in to comment.