summaryrefslogtreecommitdiffstats
path: root/external/feedapi.php
diff options
context:
space:
mode:
Diffstat (limited to 'external/feedapi.php')
-rw-r--r--external/feedapi.php30
1 files changed, 29 insertions, 1 deletions
diff --git a/external/feedapi.php b/external/feedapi.php
index 219c8a893..e13ee9b0a 100644
--- a/external/feedapi.php
+++ b/external/feedapi.php
@@ -26,6 +26,7 @@
namespace OCA\News\External;
use \OCA\AppFramework\Core\API;
+use \OCA\AppFramework\Http\Request;
use \OCA\News\BusinessLayer\FeedBusinessLayer;
use \OCA\News\BusinessLayer\FolderBusinessLayer;
@@ -39,8 +40,10 @@ class FeedAPI {
private $feedBusinessLayer;
private $folderBusinessLayer;
private $api;
+ private $request;
public function __construct(API $api,
+ Request $request,
FolderBusinessLayer $folderBusinessLayer,
FeedBusinessLayer $feedBusinessLayer,
ItemBusinessLayer $itemBusinessLayer){
@@ -51,7 +54,7 @@ class FeedAPI {
}
- public function getAll(array $urlParams=array()) {
+ public function getAll() {
$userId = $this->api->getUserId();
@@ -74,4 +77,29 @@ class FeedAPI {
}
+ public function get() {
+
+ }
+
+
+ public function create() {
+
+ }
+
+
+ public function delete() {
+
+ }
+
+
+ public function read() {
+
+ }
+
+
+ public function move() {
+
+ }
+
+
}