From 3760849aa62ee74ad5e259270a765446846e7b14 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Mon, 16 Dec 2019 14:32:27 +0530 Subject: [PATCH] Removing basic auth from our securityConfig --- .../java/com/appsmith/server/configurations/SecurityConfig.java | 1 - 1 file changed, 1 deletion(-) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/SecurityConfig.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/SecurityConfig.java index ee08bba1c9..5e4dda8350 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/SecurityConfig.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/SecurityConfig.java @@ -87,7 +87,6 @@ public class SecurityConfig { .pathMatchers("/public/**").permitAll() .anyExchange() .authenticated() - .and().httpBasic() .and().oauth2Login() .authenticationSuccessHandler(authenticationSuccessHandler) .authenticationFailureHandler(authenticationFailureHandler)