This commit is contained in:
Bernhard Posselt 2013-05-02 17:40:41 +02:00
Родитель 51d71796ad
Коммит 9f7a822bb4
3 изменённых файлов: 41 добавлений и 4 удалений

3
external/feedapi.php поставляемый
Просмотреть файл

@ -26,7 +26,6 @@
namespace OCA\News\External;
use \OCA\AppFramework\Core\API;
use \OCA\AppFramework\External\APIResult;
use \OCA\AppFramework\Controller\Controller;
use \OCA\AppFramework\Http\Request;
@ -73,7 +72,7 @@ class FeedAPI extends Controller {
$this->itemBusinessLayer->getNewestItemId($userId);
} catch(BusinessLayerException $ex) {}
return new APIResult($result);
return new NewsAPIResult($result);
}

3
external/folderapi.php поставляемый
Просмотреть файл

@ -26,7 +26,6 @@
namespace OCA\News\External;
use \OCA\AppFramework\Core\API;
use \OCA\AppFramework\External\APIResult;
use \OCA\AppFramework\Controller\Controller;
use \OCA\AppFramework\Http\Request;
@ -56,7 +55,7 @@ class FolderAPI extends Controller {
array_push($result['folders'], $folder->toAPI());
}
return new APIResult($result);
return new NewsAPIResult($result);
}

39
external/newsapiresult.php поставляемый Normal file
Просмотреть файл

@ -0,0 +1,39 @@
<?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\External\APIResult;
class NewsAPIResult extends APIResult {
const EXISTS_ERROR = 995;
public function __construct($data, $statusCode=NewsAPIResult::OK) {
parent::__construct($data, $statusCode);
}
}