Set API methods getColumns and getColumn accessible to project viewers

This commit is contained in:
Frederic Guillot 2017-01-26 22:26:07 -05:00
parent a371d53e63
commit 83ad4e4448
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@ New features:
Improvements:
* Set API methods "getColumns" and "getColumn" accessible to project viewers
* Simplify date and time configuration to avoid potential validation issues
Regressions:

View File

@ -198,7 +198,8 @@ class AuthenticationProvider implements ServiceProviderInterface
$acl->add('ActionProcedure', array('removeAction', 'getActions', 'createAction'), Role::PROJECT_MANAGER);
$acl->add('CategoryProcedure', '*', Role::PROJECT_MANAGER);
$acl->add('ColumnProcedure', '*', Role::PROJECT_MANAGER);
$acl->add('ColumnProcedure', array('updateColumn', 'addColumn', 'removeColumn', 'changeColumnPosition'), Role::PROJECT_MANAGER);
$acl->add('ColumnProcedure', array('getColumns', 'getColumn'), Role::PROJECT_VIEWER);
$acl->add('CommentProcedure', array('removeComment', 'createComment', 'updateComment'), Role::PROJECT_MEMBER);
$acl->add('ProjectPermissionProcedure', '*', Role::PROJECT_MANAGER);
$acl->add('ProjectProcedure', array('updateProject', 'removeProject', 'enableProject', 'disableProject', 'enableProjectPublicAccess', 'disableProjectPublicAccess'), Role::PROJECT_MANAGER);