MNT-16852: Add unit tests for postProcessor permissions configuration

This commit is contained in:
David Webster
2016-10-27 11:31:03 +01:00
parent 03839783f8
commit ba2fab69b0
3 changed files with 131 additions and 3 deletions

View File

@@ -209,7 +209,7 @@ public class ExtendedPermissionServiceImpl extends PermissionServiceImpl
for (PermissionPostProcessor postProcessor : postProcessors)
{
// post process permission
result = postProcessor.process(result, nodeRef, perm, this.configuredReadPermissions, this.configuredReadPermissions);
result = postProcessor.process(result, nodeRef, perm, this.configuredReadPermissions, this.configuredFilePermissions);
}
return result;