Remove need to authenticate for /users/login
Signed-off-by: Billy Brawner <billy@wbrawner.com>
This commit is contained in:
parent
8f1cb25966
commit
c99ef28a2a
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ constructor(
|
|||
@Throws(Exception::class)
|
||||
public override fun configure(http: HttpSecurity) {
|
||||
http.authorizeRequests()
|
||||
.antMatchers("/users/new", "/login")
|
||||
.antMatchers("/users/new", "/users/login")
|
||||
.permitAll()
|
||||
.anyRequest()
|
||||
.authenticated()
|
||||
|
|
Loading…
Reference in a new issue