mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:45:56 +00:00
api: catchupfeed: allow passing 'mode' (optional), bump api version
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
class API extends Handler {
|
class API extends Handler {
|
||||||
|
|
||||||
const API_LEVEL = 14;
|
const API_LEVEL = 15;
|
||||||
|
|
||||||
const STATUS_OK = 0;
|
const STATUS_OK = 0;
|
||||||
const STATUS_ERR = 1;
|
const STATUS_ERR = 1;
|
||||||
@@ -397,8 +397,12 @@ class API extends Handler {
|
|||||||
function catchupFeed() {
|
function catchupFeed() {
|
||||||
$feed_id = clean($_REQUEST["feed_id"]);
|
$feed_id = clean($_REQUEST["feed_id"]);
|
||||||
$is_cat = clean($_REQUEST["is_cat"]);
|
$is_cat = clean($_REQUEST["is_cat"]);
|
||||||
|
@$mode = clean($_REQUEST["mode"]);
|
||||||
|
|
||||||
Feeds::catchup_feed($feed_id, $is_cat);
|
if (!in_array($mode, ["all", "1day", "1week", "2week"]))
|
||||||
|
$mode = "all";
|
||||||
|
|
||||||
|
Feeds::catchup_feed($feed_id, $is_cat, $_SESSION["uid"], $mode);
|
||||||
|
|
||||||
$this->wrap(self::STATUS_OK, array("status" => "OK"));
|
$this->wrap(self::STATUS_OK, array("status" => "OK"));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user