Skip to content
Snippets Groups Projects
Commit 935f1639 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

api: catchupfeed: allow passing 'mode' (optional), bump api version

parent 4ea407f6
No related branches found
No related tags found
No related merge requests found
<?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 { ...@@ -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"));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment