Merge branch 'feature/remove-basic-auth' into 'release'

Removing basic auth from our securityConfig

See merge request theappsmith/internal-tools-server!116
This commit is contained in:
Arpit Mohan 2019-12-16 09:08:07 +00:00
commit 3e109d4d28

View File

@ -87,7 +87,6 @@ public class SecurityConfig {
.pathMatchers("/public/**").permitAll()
.anyExchange()
.authenticated()
.and().httpBasic()
.and().oauth2Login()
.authenticationSuccessHandler(authenticationSuccessHandler)
.authenticationFailureHandler(authenticationFailureHandler)