This commit is contained in:
Bernhard Posselt 2013-03-20 16:32:07 +01:00
Родитель bd3d7a730d
Коммит f2e5c7060f
2 изменённых файлов: 20 добавлений и 7 удалений

Просмотреть файл

@ -1,16 +1,29 @@
<?php
/**
* ownCloud - News app
* ownCloud - News
*
* @author Alessandro Cosentino
* @author Bernhard Posselt
* Copyright (c) 2012 - Bernhard Posselt <nukeawhale@gmail.com>
* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
* 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;
namespace OCA\News\Db;
class FeedType {
@ -18,5 +31,5 @@ class FeedType {
const FOLDER = 1;
const STARRED = 2;
const SUBSCRIPTIONS = 3;
const SHARED = 4;
const SHARED = 4;
};

Просмотреть файл

@ -27,7 +27,7 @@ namespace OCA\News\Db;
class StatusFlag {
const UNREAD = 0x02;
const STARRED = 0x04;
const STARRED = 0x04;
const DELETED = 0x08;
const UPDATED = 0x16;
}