Skip to content

Commit 3b8ecae

Browse files
committed
refactor: 코드 포맷팅
1 parent 76d1f86 commit 3b8ecae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/everTale/everTale_be/domain/story/service/StoryService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public StoryCollectionResponseDto getAllStories(Pageable pageable){
318318
public StoryCollectionResponseDto getStories(Long profileId, Pageable pageable) {
319319
Profile profile = profileHelper.getAuthenticatedProfile();
320320

321-
if (profile.getProfileType()== ProfileType.CHILD) {
321+
if (profile.getProfileType() == ProfileType.CHILD) {
322322
profileService.validateChildProfileAccess(profile, profileId);
323323
} else {
324324
profileService.validateParentProfileAccess(profile, profileId);

src/main/java/everTale/everTale_be/domain/voice/external/VoiceApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public String callFastApiToRegisterVoice(MultipartFile file, String voiceName) {
4242
HttpEntity<MultiValueMap<String, Object>> requestEntity = new HttpEntity<>(body, headers);
4343

4444
ResponseEntity<FastApiVoiceResponseDto> response = restTemplate.postForEntity(
45-
fastApiBaseUrl+"/ai/voice/register",
45+
fastApiBaseUrl + "/ai/voice/register",
4646
requestEntity,
4747
FastApiVoiceResponseDto.class
4848
);

0 commit comments

Comments
 (0)