Added new API calls for external task links

This commit is contained in:
Frederic Guillot
2016-06-26 14:33:53 -04:00
parent b82589e75f
commit 3d34681610
10 changed files with 642 additions and 185 deletions

View File

@@ -204,6 +204,7 @@ class AuthenticationProvider implements ServiceProviderInterface
$acl->add('SwimlaneProcedure', '*', Role::PROJECT_MANAGER);
$acl->add('TaskFileProcedure', '*', Role::PROJECT_MEMBER);
$acl->add('TaskLinkProcedure', '*', Role::PROJECT_MEMBER);
$acl->add('TaskExternalLinkProcedure', array('createExternalTaskLink', 'updateExternalTaskLink', 'removeExternalTaskLink'), Role::PROJECT_MEMBER);
$acl->add('TaskProcedure', '*', Role::PROJECT_MEMBER);
return $acl;