summaryrefslogtreecommitdiff
path: root/jsonrpc.php
diff options
context:
space:
mode:
authorFrancois Ferrand <thetypz@gmail.com>2015-03-03 16:01:37 +0100
committerFrancois Ferrand <thetypz@gmail.com>2015-03-03 16:35:45 +0100
commitefbcc22f5af2e9b5d241a9cee0dded48353cb91e (patch)
tree447a9abe9c90a4fce1f3b3ec64cb97ebc8bcca97 /jsonrpc.php
parent23f8f2c576271a9007b5da0a4d0ba144ad66086d (diff)
Add missing swimlane REST API
Missing API to retrieve extra details were missing: getSwimlane($project_id, $name) getAllSwimlanes($project_id)
Diffstat (limited to 'jsonrpc.php')
-rw-r--r--jsonrpc.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/jsonrpc.php b/jsonrpc.php
index 66421daf..afc1ed18 100644
--- a/jsonrpc.php
+++ b/jsonrpc.php
@@ -68,6 +68,8 @@ $server->bind('removeColumn', $container['board'], 'removeColumn');
* Swimlane procedures
*/
$server->bind('getSwimlanes', $container['swimlane'], 'getSwimlanes');
+$server->bind('getAllSwimlanes', $container['swimlane'], 'getAll');
+$server->bind('getSwimlane', $container['swimlane'], 'getByName');
$server->bind('addSwimlane', $container['swimlane'], 'create');
$server->bind('updateSwimlane', $container['swimlane'], 'rename');
$server->bind('removeSwimlane', $container['swimlane'], 'remove');