emoji.go
author Mikael Berthe <mikael@lilotux.net>
Sun, 13 Jan 2019 13:25:58 +0100
changeset 247 17e32e951670
parent 238 1c0042e76902
permissions -rw-r--r--
Fix missing media API endpoint version This should fix <https://github.com/McKael/madonctl/issues/18>.

/*
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
}