Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@RequiredArgsConstructor
public class OAuth2SuccessHandler extends SimpleUrlAuthenticationSuccessHandler {

private static final String REDIRECT_URL = "https://api.team-pickify.store/";
private static final String REDIRECT_URL = "https://team-pickify.store/";

private final JwtUtil jwtUtil;
private final RedisUtil redisUtil;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOriginPatterns("https://api.team-pickify.store", "http://localhost:5173")
.allowedOriginPatterns("https://team-pickify.store", "http://localhost:5173")
.allowedMethods("GET", "POST", "PUT", "DELETE", "PATCH")
.allowedHeaders("*")
.exposedHeaders("Authorization")
Expand Down