emoji.go
author Mikael Berthe <mikael@lilotux.net>
Wed, 21 Mar 2018 01:00:57 +0100
changeset 219 98697242c4a0
parent 208 0b58780582d9
child 238 1c0042e76902
permissions -rw-r--r--
Update types I've commented out showing_reblogs since Mastodon 2.2.0 uses weak typing -- seems to be fixed in 2.3.1.

/*
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("custom_emojis", rest.Get, nil, lopt, nil, &emojiList); err != nil {
		return nil, err
	}
	return emojiList, nil
}