diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-05 21:11:34 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-05 21:11:34 -0500 |
commit | a976afdeb0094ce258785079cc8bce04283e53f0 (patch) | |
tree | 4e7a6787d6f174520422c538a3c6082eb14a26a4 /app | |
parent | e0f925d298968c4d2304d5b563d0b9eabaf0ce1b (diff) |
Export only open tasks in iCal feed
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/Ical.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Controller/Ical.php b/app/Controller/Ical.php index f8e9e25f..f1ea6d8f 100644 --- a/app/Controller/Ical.php +++ b/app/Controller/Ical.php @@ -3,6 +3,7 @@ namespace Kanboard\Controller; use Kanboard\Model\TaskFilter; +use Kanboard\Model\Task as TaskModel; use Eluceo\iCal\Component\Calendar as iCalendar; /** @@ -31,6 +32,7 @@ class Ical extends Base // Common filter $filter = $this->taskFilterICalendarFormatter ->create() + ->filterByStatus(TaskModel::STATUS_OPEN) ->filterByOwner($user['id']); // Calendar properties @@ -60,6 +62,7 @@ class Ical extends Base // Common filter $filter = $this->taskFilterICalendarFormatter ->create() + ->filterByStatus(TaskModel::STATUS_OPEN) ->filterByProject($project['id']); // Calendar properties |