mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-27 14:48:08 -05:00
* Add visibility * Tab use * Update app/Models/Days.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
8 lines
121 B
PHP
8 lines
121 B
PHP
<?php
|
|
|
|
class FreshRSS_Days {
|
|
public const TODAY = 0;
|
|
public const YESTERDAY = 1;
|
|
public const BEFORE_YESTERDAY = 2;
|
|
}
|