Zack Brown

Results 1 comments of Zack Brown

I solved the problem - turns out I needed to permit the route pattern: ``` .authorizeRequests(requests -> requests .mvcMatchers("/**").permitAll() .anyRequest().authenticated() ) ``` I don't recall having to do this before...