Skip to content

Commit

Permalink
Proper url mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
annaojdowska committed Dec 2, 2018
1 parent c967e3d commit 35bdefd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,10 @@ protected void configure(HttpSecurity http) throws Exception {
.httpBasic()
.and()
.authorizeRequests()
.antMatchers("/project/**").permitAll()
.anyRequest().permitAll()
.and().csrf().csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse());
.and().csrf()
.csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse());
}
}

Expand Down

0 comments on commit 35bdefd

Please sign in to comment.