summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-06-19 19:38:23 -0400
committerFrederic Guillot <fred@kanboard.net>2015-06-19 19:38:23 -0400
commit73c47d9461cbfea88c84f3f2b01cdeb2d22c2f87 (patch)
treec7749fee7885ecfe6f12ae53a55c615ef0191971 /tests
parentff85518fa8f6dc48ac5dedb4847c6bb24ea35b2f (diff)
Add RSS feed for users and change address of project feeds
Diffstat (limited to 'tests')
-rw-r--r--tests/units/AclTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/units/AclTest.php b/tests/units/AclTest.php
index 20101d47..c74a90ca 100644
--- a/tests/units/AclTest.php
+++ b/tests/units/AclTest.php
@@ -38,6 +38,8 @@ class AclTest extends Base
$this->assertTrue($acl->isPublicAction('board', 'readonly'));
$this->assertFalse($acl->isPublicAction('board', 'show'));
$this->assertTrue($acl->isPublicAction('app', 'colors'));
+ $this->assertTrue($acl->isPublicAction('feed', 'project'));
+ $this->assertTrue($acl->isPublicAction('feed', 'user'));
}
public function testAdminActions()