graphql

parent 5e1a423c
...@@ -32,6 +32,8 @@ public class JhSecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -32,6 +32,8 @@ public class JhSecurityConfig extends WebSecurityConfigurerAdapter {
HttpSecurity cfg = http HttpSecurity cfg = http
.authorizeRequests() .authorizeRequests()
.antMatchers("/auth/**").permitAll() .antMatchers("/auth/**").permitAll()
.antMatchers("/graphiql").permitAll()
.antMatchers("/graphql").permitAll()
.anyRequest().authenticated() .anyRequest().authenticated()
.and() .and()
.logout() .logout()
......
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