summaryrefslogtreecommitdiff
path: root/jsonrpc.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-24 20:28:54 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-24 20:28:54 -0400
commit00c2e5c80ee4b6c5e5234e5b6a333bb19edd9b76 (patch)
treed6ad2135d614de68adf2fb6a8e8d702785e9ce0a /jsonrpc.php
parent3eb5501ca0cfc11e774514a4169c718d1e54854d (diff)
Add file procedures to the API
Diffstat (limited to 'jsonrpc.php')
-rw-r--r--jsonrpc.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/jsonrpc.php b/jsonrpc.php
index b6ec8291..c3de1fc5 100644
--- a/jsonrpc.php
+++ b/jsonrpc.php
@@ -9,6 +9,7 @@ $server->attach(new Api\App($container));
$server->attach(new Api\Board($container));
$server->attach(new Api\Category($container));
$server->attach(new Api\Comment($container));
+$server->attach(new Api\File($container));
$server->attach(new Api\Link($container));
$server->attach(new Api\Project($container));
$server->attach(new Api\ProjectPermission($container));