summaryrefslogtreecommitdiff
path: root/app/Model/Acl.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-07 19:21:26 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-07 19:21:26 -0400
commitf63984af1a1098f9d3925b5d5f1d0b98fdcf05e2 (patch)
treef72296b39352dd7a690987f43e250088550cac88 /app/Model/Acl.php
parentf7fa47fa35cde502317fbc92ca90278541cd628a (diff)
Allow quickly creating and changing state of subtask (pull-request #312)
Diffstat (limited to 'app/Model/Acl.php')
-rw-r--r--app/Model/Acl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Acl.php b/app/Model/Acl.php
index 33fb13b7..0914cbd0 100644
--- a/app/Model/Acl.php
+++ b/app/Model/Acl.php
@@ -37,7 +37,7 @@ class Acl extends Base
'user' => array('edit', 'forbidden', 'logout', 'show', 'external', 'unlinkgoogle', 'unlinkgithub', 'sessions', 'removesession', 'last', 'notifications', 'password'),
'comment' => array('create', 'save', 'confirm', 'remove', 'update', 'edit', 'forbidden'),
'file' => array('create', 'save', 'download', 'confirm', 'remove', 'open', 'image'),
- 'subtask' => array('create', 'save', 'edit', 'update', 'confirm', 'remove'),
+ 'subtask' => array('create', 'save', 'edit', 'update', 'confirm', 'remove', 'togglestatus'),
'task' => array('show', 'create', 'save', 'edit', 'update', 'close', 'open', 'duplicate', 'remove', 'description', 'move', 'copy'),
'category' => array('index', 'save', 'edit', 'update', 'confirm', 'remove'),
'action' => array('index', 'event', 'params', 'create', 'confirm', 'remove'),