Commit 91c18743 by Jan Hrabal

oauth

parent 0d7a72bf
......@@ -32,6 +32,7 @@ public class JhSecurityConfig extends WebSecurityConfigurerAdapter {
HttpSecurity cfg = http
.authorizeRequests()
.antMatchers("/auth/**").permitAll()
.antMatchers("/oauth/**").permitAll()
.antMatchers("/graphiql").permitAll()
.antMatchers("/graphql").permitAll()
.anyRequest().authenticated()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment