diff options
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 47d244bee..36ed11b40 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -9,6 +9,10 @@ class FreshRSS_Entry extends Minz_Model { public const STATE_ALL = 3; public const STATE_FAVORITE = 4; public const STATE_NOT_FAVORITE = 8; + public const STATE_ANDS = self::STATE_READ | self::STATE_NOT_READ | self::STATE_FAVORITE | self::STATE_NOT_FAVORITE; + public const STATE_OR_NOT_READ = 32; + public const STATE_OR_FAVORITE = 64; + public const STATE_ORS = self::STATE_OR_NOT_READ | self::STATE_OR_FAVORITE; /** @var numeric-string */ private string $id = '0'; |
