vendor/github.com/McKael/madon/v3/emoji.go
changeset 265 05c40b36d3b2
parent 242 2a9ec03fe5a1
child 268 4dd196a4ee7c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/github.com/McKael/madon/v3/emoji.go	Sat Feb 04 12:58:35 2023 +0100
@@ -0,0 +1,20 @@
+/*
+Copyright 2018 Mikael Berthe
+
+Licensed under the MIT license.  Please see the LICENSE file is this directory.
+*/
+
+package madon
+
+import (
+	"github.com/sendgrid/rest"
+)
+
+// GetCustomEmojis returns a list with the server custom emojis
+func (mc *Client) GetCustomEmojis(lopt *LimitParams) ([]Emoji, error) {
+	var emojiList []Emoji
+	if err := mc.apiCall("v1/custom_emojis", rest.Get, nil, lopt, nil, &emojiList); err != nil {
+		return nil, err
+	}
+	return emojiList, nil
+}