Add paging to the GET /emojis endpoint (#6802)

Этот коммит содержится в:
Joram Wilander
2017-07-04 02:58:02 -04:00
коммит произвёл Christopher Speller
родитель 02335ddad4
Коммит f54aee1ef5
8 изменённых файлов: 24 добавлений и 15 удалений

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

@@ -349,7 +349,7 @@ type EmojiStore interface {
Save(emoji *model.Emoji) StoreChannel
Get(id string, allowFromCache bool) StoreChannel
GetByName(name string) StoreChannel
GetAll() StoreChannel
GetList(offset, limit int) StoreChannel
Delete(id string, time int64) StoreChannel
}