summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-13 16:47:33 +0100
committerGeorge Goldberg <george@gberg.me>2017-03-13 15:47:33 +0000
commit27d2c1f6febdc6b80f60837086ebe0c08f975147 (patch)
treecb2b6ace91234817721170c8d3b9a0ffceeacfed /model
parent38958d9ac4f415d9ae99dfcdb53bfdc355d96764 (diff)
downloadchat-27d2c1f6febdc6b80f60837086ebe0c08f975147.tar.gz
chat-27d2c1f6febdc6b80f60837086ebe0c08f975147.tar.bz2
chat-27d2c1f6febdc6b80f60837086ebe0c08f975147.zip
Add implementation for POST /database/recycle apiV4 - Recycle database connection (#5717)
Diffstat (limited to 'model')
-rw-r--r--model/client4.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/model/client4.go b/model/client4.go
index b6c2daf0f..4c46d6d57 100644
--- a/model/client4.go
+++ b/model/client4.go
@@ -150,6 +150,10 @@ func (c *Client4) GetTestEmailRoute() string {
return fmt.Sprintf("/email/test")
}
+func (c *Client4) GetDatabaseRoute() string {
+ return fmt.Sprintf("/database")
+}
+
func (c *Client4) GetIncomingWebhooksRoute() string {
return fmt.Sprintf("/hooks/incoming")
}
@@ -1088,6 +1092,15 @@ func (c *Client4) GetConfig() (*Config, *Response) {
}
}
+func (c *Client4) DatabaseRecycle() (bool, *Response) {
+ if r, err := c.DoApiPost(c.GetDatabaseRoute()+"/recycle", ""); 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.