Advertisement
SimpleCookie

Untitled

Feb 12th, 2024
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.16 KB | None | 0 0
  1. override fun configure(http: HttpSecurity) {
  2.     http
  3.         .authorizeRequests()
  4.         .antMatchers("/logout").permitAll()
  5.         // other configurations
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement