BAEL-797 streamlining security configuration

This commit is contained in:
tschiman 2017-05-14 23:01:50 -06:00
parent e193a60dc6
commit 2ba7264f66
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.authorizeRequests()
.antMatchers("/book-service/**", "/rating-service/**", "/login*", "/").permitAll()
.antMatchers("/eureka/**").hasRole("ADMIN")
.antMatchers("/home/*").authenticated()
.anyRequest().authenticated()
.and()
.logout()