GH-9619 GetEmojiImage added to plugin API (#9628)

* GH-9619 conflict fix

* GH-9619 fixed conflicts, version comment
Этот коммит содержится в:
S4KH
2018-10-19 04:07:21 +08:00
коммит произвёл Harrison Healey
родитель d1805733fe
Коммит c3d536c644
4 изменённых файлов: 71 добавлений и 0 удалений

Просмотреть файл

@@ -276,6 +276,11 @@ type API interface {
// Minimum server version: 5.3
ReadFile(path string) ([]byte, *model.AppError)
// GetEmojiImage returns the emoji image.
//
// Minimum server version: 5.6
GetEmojiImage(emojiId string) ([]byte, string, *model.AppError)
// KVSet will store a key-value pair, unique per plugin.
KVSet(key string, value []byte) *model.AppError