SecurityConfig excerpt
File: /C:/Users/moabd/OneDrive/Documents/New project/appsmith-src/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/SecurityConfig.java

202:                .authorizeExchange(authorizeExchangeSpec -> authorizeExchangeSpec
203:                        // The following endpoints are allowed to be accessed without
204:                        // authentication
205:                        .matchers(
206:                                ServerWebExchangeMatchers.pathMatchers(HttpMethod.GET, Url.HEALTH_CHECK),
207:                                ServerWebExchangeMatchers.pathMatchers(HttpMethod.POST, USER_URL),
208:                                ServerWebExchangeMatchers.pathMatchers(HttpMethod.POST, USER_URL + "/super"),
209:                                ServerWebExchangeMatchers.pathMatchers(HttpMethod.POST, USER_URL + "/forgotPassword"),
210:                                ServerWebExchangeMatchers.pathMatchers(
211:                                        HttpMethod.GET, USER_URL + "/verifyPasswordResetToken"),
212:                                ServerWebExchangeMatchers.pathMatchers(HttpMethod.PUT, USER_URL + "/resetPassword"),
227:                                ServerWebExchangeMatchers.pathMatchers(
228:                                        HttpMethod.POST, USER_URL + "/resendEmailVerification"),
229:                                ServerWebExchangeMatchers.pathMatchers(
230:                                        HttpMethod.POST, USER_URL + "/verifyEmailVerificationToken"),
232:                                .permitAll()
