diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 17:26:33 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 17:26:33 -0400 |
commit | 88ee691bb9c17bd6d2b93873ed789d2edc120b37 (patch) | |
tree | 9e462fae3e61345f8ffba170b00906848a9eac63 /app/ServiceProvider | |
parent | 9e218032c485b7ab6ef8e00f45890151988b0f90 (diff) |
Fix wrong redirect after removing a task from the task view page
Diffstat (limited to 'app/ServiceProvider')
-rw-r--r-- | app/ServiceProvider/AuthenticationProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ServiceProvider/AuthenticationProvider.php b/app/ServiceProvider/AuthenticationProvider.php index f8ea9b19..2fad8a3a 100644 --- a/app/ServiceProvider/AuthenticationProvider.php +++ b/app/ServiceProvider/AuthenticationProvider.php @@ -92,7 +92,7 @@ class AuthenticationProvider implements ServiceProviderInterface $acl->add('SubtaskRestrictionController', '*', Role::PROJECT_MEMBER); $acl->add('SubtaskStatusController', '*', Role::PROJECT_MEMBER); $acl->add('SwimlaneController', '*', Role::PROJECT_MANAGER); - $acl->add('TaskViewController', 'remove', Role::PROJECT_MEMBER); + $acl->add('TaskSuppressionController', '*', Role::PROJECT_MEMBER); $acl->add('TaskCreationController', '*', Role::PROJECT_MEMBER); $acl->add('TaskBulkController', '*', Role::PROJECT_MEMBER); $acl->add('TaskDuplicationController', '*', Role::PROJECT_MEMBER); |