Skip to content

Commit

Permalink
BAEL-509: Removed Duplicate Ant Matcher (#2558)
Browse files Browse the repository at this point in the history
* Simple Boot REST application and example

* BAEL-509 - Removed extra duplicate ant matcher

* Example and Unit Tests

* documentation

* BAEL-1085 - changes per PR code review and document review - altered integration to unit test - all's good

* BAEL-1085 - Renamed unit tests and added both to pom.xml

* IntelliJ formatter

* REVERT - Had removed a duplicate ant matcher from BAEL-509 - this was the incorrect process - reverting now, article has been corrected, but will issue a seperate PR for this

* BAEL-509: Removed duplicate ant matcher - does not impact code at runtime
  • Loading branch information
Thoughtscript authored and zhendrikse committed Sep 6, 2017
1 parent 2f1bb7b commit 9f10f7c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ protected void configure(HttpSecurity http) throws Exception {
.authorizeRequests()
.antMatchers("/", "/index", "/authenticate")
.permitAll()
.antMatchers("/secured/**/**",
"/secured/success", "/secured/socket", "/secured/success")
.antMatchers("/secured/**/**", "/secured/socket", "/secured/success")
.authenticated()
.anyRequest().authenticated()
.and()
Expand Down

0 comments on commit 9f10f7c

Please sign in to comment.