Skip to content

Commit

Permalink
fix: Explation img response AwsS3Util 제거 (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
sejineer authored Feb 9, 2024
1 parent 2163b8a commit 99676fe
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.shallwe.domain.experiencegift.dto.response;

import com.shallwe.global.utils.AwsS3ImageUrlUtil;
import lombok.Builder;
import lombok.Data;
import lombok.RequiredArgsConstructor;
Expand All @@ -24,9 +23,8 @@ public static ExplanationRes toDto(String stage,String description,String explan
return ExplanationRes.builder()
.stage(stage)
.description(description)
.explanationUrl(AwsS3ImageUrlUtil.toUrl(explanationUrl))
.explanationUrl(explanationUrl)
.build();

}

}

0 comments on commit 99676fe

Please sign in to comment.