From 2628022275ef64fde95545abe4634b4bd7177844 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Fri, 15 Sep 2017 08:51:46 -0400 Subject: PLT-7622 Improvements to server handling of webapp plugins (#7445) * Improvements to server handling of webapp plugins * Fix newline * Update manifest function names --- model/client4.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'model/client4.go') diff --git a/model/client4.go b/model/client4.go index c06975697..44c4cf6c9 100644 --- a/model/client4.go +++ b/model/client4.go @@ -3088,3 +3088,14 @@ func (c *Client4) RemovePlugin(id string) (bool, *Response) { return CheckStatusOK(r), BuildResponse(r) } } + +// GetWebappPlugins will return a list of plugins that the webapp should download. +// WARNING: PLUGINS ARE STILL EXPERIMENTAL. THIS FUNCTION IS SUBJECT TO CHANGE. +func (c *Client4) GetWebappPlugins() ([]*Manifest, *Response) { + if r, err := c.DoApiGet(c.GetPluginsRoute()+"/webapp", ""); err != nil { + return nil, BuildErrorResponse(r, err) + } else { + defer closeBody(r) + return ManifestListFromJson(r.Body), BuildResponse(r) + } +} -- cgit v1.2.3-1-g7c22