Skip to content

Commit

Permalink
fix kotlin incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
F43nd1r committed May 19, 2021
1 parent e669136 commit 3adfb3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class SecurityConfiguration(private val userService: UserService) : WebSecurityC
.headers().disable()
.requestCache().requestCache(requestCache)
.and().authorizeRequests()
.requestMatchers(SecurityUtils::isFrameworkInternalRequest).permitAll()
.requestMatchers({ SecurityUtils.isFrameworkInternalRequest(it) }).permitAll()
.regexMatchers("/${SetupView.ROUTE}").permitAll()
.anyRequest().authenticated()
.and().formLogin().loginPage("/${LoginView.ROUTE}").permitAll()
Expand Down

0 comments on commit 3adfb3a

Please sign in to comment.