Implement exclusion params for notifications API call

This commit is contained in:
Hyphen 2020-08-29 00:27:36 +02:00 committed by r
parent a4a1ce9677
commit 71c5da7b3b
1 changed files with 6 additions and 2 deletions

View File

@ -23,9 +23,13 @@ type Notification struct {
}
// GetNotifications return notifications.
func (c *Client) GetNotifications(ctx context.Context, pg *Pagination) ([]*Notification, error) {
func (c *Client) GetNotifications(ctx context.Context, pg *Pagination, excludes ...string) ([]*Notification, error) {
var notifications []*Notification
err := c.doAPI(ctx, http.MethodGet, "/api/v1/notifications", nil, &notifications, pg)
params := url.Values{}
for _, exclude := range excludes {
params.Add("exclude_types[]", exclude)
}
err := c.doAPI(ctx, http.MethodGet, "/api/v1/notifications", params, &notifications, pg)
if err != nil {
return nil, err
}