Skip to content

Commit

Permalink
fix: method call #33
Browse files Browse the repository at this point in the history
  • Loading branch information
coding-convention committed Aug 8, 2023
1 parent adc349c commit f4acb35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public List<AwsBluePrintListDto> getMyAwsBlueprints(String oauthId) {
dto.setId(awsBluePrint.getId());
dto.setCreatedAt(awsBluePrint.getCreated_at());
dto.setStatus(awsBluePrint.getStatus());
dto.setPresignedUrl(_getObjectKey(member.getOauthId(), awsBluePrint.getUuid()));
dto.setPresignedUrl(awsS3Helper.getPresignedUrl(_getObjectKey(member.getOauthId(), awsBluePrint.getUuid())));
awsBluePrintDtos.add(dto);
}
return awsBluePrintDtos;
Expand Down

0 comments on commit f4acb35

Please sign in to comment.