From 4902253e9c8aac706091c6337391153b02923689 Mon Sep 17 00:00:00 2001 From: Alessandro Cosentino Date: Sat, 2 Mar 2013 19:50:33 +0100 Subject: prototype for business layer for feed --- controller/feedcontroller.php | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 controller/feedcontroller.php (limited to 'controller/feedcontroller.php') diff --git a/controller/feedcontroller.php b/controller/feedcontroller.php new file mode 100644 index 000000000..4357d7682 --- /dev/null +++ b/controller/feedcontroller.php @@ -0,0 +1,55 @@ +. +* +*/ + +namespace OCA\News\Controller; + +use \OCA\AppFramework\Controller\Controller; +use \OCA\AppFramework\Core\API; +use \OCA\AppFramework\Http\Request; +use \OCA\AppFramework\Db\DoesNotExistException; +use \OCA\AppFramework\Db\MultipleObjectsReturnedException; + + +class FeedController extends Controller { + + + public function __construct(API $api, Request $request, $feedMapper){ + parent::__construct($api, $request); + $this->feedMapper = $feedMapper; + } + + + /** + * @IsAdminExemption + * @IsSubAdminExemption + * @Ajax + * + * Returns all feeds + */ + public function getAll(){ + $feeds = $this->feedMapper->findAll(); + return $this->renderJSON($feeds); + } +} \ No newline at end of file -- cgit v1.2.3