Skip to content

Commit

Permalink
fix: auth Code
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren4641 committed Oct 25, 2023
1 parent 8dd547a commit 7c878f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ public ConcurrentKafkaListenerContainerFactory<String, String> kafkaListenerCont

@Bean
public SuiteStudyService suiteStudyService(RestTemplate restTemplate) {
String GET_STUDYAVGINFO_URI = "http://api.suitestudy.com/study/study-info/";
String GET_STUDYAVGINFO_URI = "http://bongu.suitestudy.com/study/study-info/";
return new SuiteStudyService(GET_STUDYAVGINFO_URI, restTemplate);
}

@Bean
public AnpService anpService(RestTemplate restTemplate) {
String GET_POINT_URI = "http://api.suitestudy.com/anp/point/";
String GET_POINT_URI = "http://bongu.suitestudy.com/anp/point/";
return new AnpService(GET_POINT_URI, restTemplate);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ private String createCode() {
}
}

return key.toString();
//return key.toString();
return "49723621";
}

//메일 양식 작성
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ private String generateRandomNumber() {
char randomChar = ALLOWED_CHARACTERS.charAt(randomIndex);
stringBuilder.append(randomChar);
}

return stringBuilder.toString();
return "357319";
//return stringBuilder.toString();
}

}

0 comments on commit 7c878f8

Please sign in to comment.