summaryrefslogtreecommitdiffstats
path: root/model/client4.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/client4.go')
-rw-r--r--model/client4.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/model/client4.go b/model/client4.go
index df09174d5..8f3328e80 100644
--- a/model/client4.go
+++ b/model/client4.go
@@ -154,6 +154,10 @@ func (c *Client4) GetDatabaseRoute() string {
return fmt.Sprintf("/database")
}
+func (c *Client4) GetCacheRoute() string {
+ return fmt.Sprintf("/caches")
+}
+
func (c *Client4) GetClusterRoute() string {
return fmt.Sprintf("/cluster")
}
@@ -1154,6 +1158,15 @@ func (c *Client4) DatabaseRecycle() (bool, *Response) {
}
}
+func (c *Client4) InvalidateCaches() (bool, *Response) {
+ if r, err := c.DoApiPost(c.GetCacheRoute()+"/invalidate", ""); err != nil {
+ return false, &Response{StatusCode: r.StatusCode, Error: err}
+ } else {
+ defer closeBody(r)
+ return CheckStatusOK(r), BuildResponse(r)
+ }
+}
+
// Webhooks Section
// CreateIncomingWebhook creates an incoming webhook for a channel.