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