summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-02-15 19:25:33 -0500
committerJoram Wilander <jwawilander@gmail.com>2017-02-15 19:25:33 -0500
commit01a8114aa3d0a349e3b389ecc1e979c4123dee75 (patch)
tree741f39ba79af1b9abd328808fcb06267f8be65cc /store/store.go
parent727d067fcee4e97497152ebf8ca46a5ad254422e (diff)
downloadchat-01a8114aa3d0a349e3b389ecc1e979c4123dee75.tar.gz
chat-01a8114aa3d0a349e3b389ecc1e979c4123dee75.tar.bz2
chat-01a8114aa3d0a349e3b389ecc1e979c4123dee75.zip
Adding emoji caching (#5433)
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/store.go b/store/store.go
index c94dbc469..00866d523 100644
--- a/store/store.go
+++ b/store/store.go
@@ -304,7 +304,7 @@ type PasswordRecoveryStore interface {
type EmojiStore interface {
Save(emoji *model.Emoji) StoreChannel
- Get(id string) StoreChannel
+ Get(id string, allowFromCache bool) StoreChannel
GetByName(name string) StoreChannel
GetAll() StoreChannel
Delete(id string, time int64) StoreChannel