Skip to content

Commit

Permalink
refact : presigned 변환 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Jun 19, 2024
1 parent 97e179f commit 05f0890
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,10 @@ public void sendGroupInviteMessage(
final String groupProfileUrl,
final List<Long> targetIds
) {
String preSignedUrl = s3PreSignedUrlManager.getS3PreSignedUrlForGet(groupProfileUrl);

basicRabbitTemplate.convertAndSend(
RabbitmqComponentConstants.GROUP_INVITE_NOTIFICATION_EXCHANGE.getSuccessComponent(),
RabbitmqComponentConstants.GROUP_INVITE_NOTIFICATION_QUEUE.getSuccessComponent(),
GroupInviteNotificationDto.createOf(ownerNickname, preSignedUrl, targetIds)
GroupInviteNotificationDto.createOf(ownerNickname, groupProfileUrl, targetIds)
);
}

Expand Down

0 comments on commit 05f0890

Please sign in to comment.