Skip to content

Commit

Permalink
feat: default url redirect 시 https로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
KiSeungMin committed Nov 6, 2024
1 parent 1d8600b commit 0d0a3ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public PasswordEncoder passwordEncoder() {

@Bean
public AuthenticationEntryPoint authenticationEntryPoint() {
return (request, response, authException) -> response.sendRedirect("/home");
return (request, response, authException) -> response.sendRedirect("https://ono-app.com/home");
}

@Bean
Expand Down

0 comments on commit 0d0a3ed

Please sign in to comment.