summaryrefslogtreecommitdiff
path: root/app/Api/Me.php
diff options
context:
space:
mode:
authorTimo Litzbarski <tili2@gmx.de>2015-09-17 16:27:59 +0000
committerTimo Litzbarski <tili2@gmx.de>2015-09-17 16:27:59 +0000
commit55ca46ad754b87991e5cc4c4bc26657b19d37830 (patch)
tree411ed1936d1ae8aa4e96a0b79534eef71bf3a977 /app/Api/Me.php
parent08e09c1cac39eb0836ccf11e1ad411832d424022 (diff)
#1232 Api changes: new getMyOverdueTasks, new getOverdueTasksByProject, allow getProjectActivity for user-api
Diffstat (limited to 'app/Api/Me.php')
-rw-r--r--app/Api/Me.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Api/Me.php b/app/Api/Me.php
index 29a8052a..bc721c09 100644
--- a/app/Api/Me.php
+++ b/app/Api/Me.php
@@ -52,4 +52,9 @@ class Me extends Base
{
return $this->projectPermission->getMemberProjects($this->userSession->getId());
}
+
+ public function getMyOverdueTasks()
+ {
+ return $this->taskFinder->getOverdueTasksByUser($this->userSession->getId());
+ }
}