diff options
author | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-04 14:34:25 +0100 |
---|---|---|
committer | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-04 14:34:25 +0100 |
commit | 3d9f4718032c3ee50a0165e32c8d6c59b153fe22 (patch) | |
tree | 42742286cd526f426ff33a1d436a8d85d6f8b565 | |
parent | f27e8c870579d53209d11420ae08f3776ede166b (diff) |
Implement ttrss-catchup-feed method
-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 |