diff options
-rw-r--r-- | ttrss.el | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -607,5 +607,14 @@ following key-value pairs: ;; unsubscribeFeed ;; getFeedTree +(defun ttrss-catchup-feed (address sid feed-id) + "Try to catchup feed at ADDRESS using SID with FEED-ID. +Returns a status string (typically 'OK')." + (ttrss-post-request address + :status + :op "catchupFeed" + :sid sid + :feed_id feed-id)) + (provide 'ttrss) ;;; ttrss.el ends here |