|
|
@@ -128,7 +128,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
.antMatchers(GET, "/project/members").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
.antMatchers(GET, "/project/{projectId}").authenticated()
|
|
|
.antMatchers(POST, "/project/create").authenticated()
|
|
|
- .antMatchers(POST, "/project/members").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
+ .antMatchers(POST, "/project/members").authenticated()
|
|
|
.antMatchers(POST, "/project/members/add").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
.antMatchers(POST, "/project/relate/code").access("@authTools.checkProjOwnershipParam(request)")
|
|
|
.antMatchers(POST, "/project/relate").access("@authTools.checkProjOwnershipParam(request)")
|