Explorar el Código

Add API Client function to refresh all feeds

Frédéric Guillot hace 6 años
padre
commit
086b985383
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. 11 1
      client/client.go

+ 11 - 1
client/client.go

@@ -320,7 +320,17 @@ func (c *Client) UpdateFeed(feedID int64, feedChanges *FeedModification) (*Feed,
 	return f, nil
 }
 
-// RefreshFeed refresh a feed.
+// RefreshAllFeeds refreshes all feeds.
+func (c *Client) RefreshAllFeeds() error {
+	body, err := c.request.Put(fmt.Sprintf("/v1/feeds/refresh"), nil)
+	if err != nil {
+		return err
+	}
+	body.Close()
+	return nil
+}
+
+// RefreshFeed refreshes a feed.
 func (c *Client) RefreshFeed(feedID int64) error {
 	body, err := c.request.Put(fmt.Sprintf("/v1/feeds/%d/refresh", feedID), nil)
 	if err != nil {