diff options
| author | 2024-10-23 21:55:52 +0200 | |
|---|---|---|
| committer | 2024-10-23 21:55:52 +0200 | |
| commit | 7a5ce0fe20d63746b7f5b435ba5eef0a9b7db2d6 (patch) | |
| tree | 090cff8c9852ecc4636feaa1c5a75304c23fad27 /app/Models/View.php | |
| parent | 60dd22d3b3916f5113954fc1472b1658c3c4245f (diff) | |
Web export SQLite (#6931)
* Web export SQLite
https://github.com/FreshRSS/FreshRSS/discussions/6930
* Implement download
* Fix operator precedence
* Set Last-Modified
* Sort by time, newest first
* Fix Last-Modified
* Use DateTimeInterface::RFC7231
* Add not_applicable message
Diffstat (limited to 'app/Models/View.php')
| -rw-r--r-- | app/Models/View.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Models/View.php b/app/Models/View.php index 244379505..3c3b3a2e0 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -82,6 +82,9 @@ class FreshRSS_View extends Minz_View { public string $list_title; public int $queryId; public string $type; + /** @var null|array<array{name:string,size:int,mtime:int}> */ + public ?array $sqliteArchives = null; + public string $sqlitePath; // Form login public int $cookie_days; |
