|
|
@@ -126,7 +126,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
// Project Controller
|
|
|
.antMatchers(GET, "/project/listByUser").authenticated()
|
|
|
.antMatchers(GET, "/project/members").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
- .antMatchers(GET, "/project/{projectId}").access("@authTools.getProjectValidator(#projectId)")
|
|
|
+ .antMatchers(GET, "/project/{projectId}").authenticated()
|
|
|
.antMatchers(POST, "/project/create").authenticated()
|
|
|
.antMatchers(POST, "/project/members").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
.antMatchers(POST, "/project/members/add").access("@authTools.checkProjOwnershipParam(request)")
|