summaryrefslogtreecommitdiffstats
path: root/external
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-03 10:41:00 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-03 10:41:14 +0200
commite241d438bbf86d744d5abcc11fdd2176fa276d3b (patch)
treebc03a48a8beec77ce662514f6a5acb08d8d5d5e1 /external
parent081704721afb986ec971aa29e22a03419f8393cc (diff)
also provide the app version
Diffstat (limited to 'external')
-rw-r--r--external/newsapi.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/external/newsapi.php b/external/newsapi.php
new file mode 100644
index 000000000..747f818ec
--- /dev/null
+++ b/external/newsapi.php
@@ -0,0 +1,47 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCA\News\External;
+
+use \OCA\AppFramework\Core\API;
+use \OCA\AppFramework\Controller\Controller;
+use \OCA\AppFramework\Http\Request;
+
+
+class NewsAPI extends Controller {
+
+
+ public function __construct(API $api, Request $request){
+ parent::__construct($api, $request);
+ }
+
+
+ public function version() {
+ $version = $this->api->getAppValue('installed_version');
+ return new NewsAPIResult(array('version' => $version));
+ }
+
+
+}