summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-10-20 08:00:21 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-10-20 08:00:21 -0400
commit460a82878a93ef040d2c9a1221992ed7aa808d86 (patch)
tree1a50fabf167714d614d58b1625813b34686d5fd5 /store/store.go
parent7d8e08ccf6211d3df78eb6cfd4a198df77072540 (diff)
parent995c5a276bb27f50332047684b4d8f4cfc02243b (diff)
downloadchat-460a82878a93ef040d2c9a1221992ed7aa808d86.tar.gz
chat-460a82878a93ef040d2c9a1221992ed7aa808d86.tar.bz2
chat-460a82878a93ef040d2c9a1221992ed7aa808d86.zip
Merge pull request #1113 from hmhealey/plt716
PLT-716/717 Added from:, in:, and channel: search filters
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 70980a15c..27731cee1 100644
--- a/store/store.go
+++ b/store/store.go
@@ -84,7 +84,7 @@ type PostStore interface {
GetPosts(channelId string, offset int, limit int) StoreChannel
GetPostsSince(channelId string, time int64) StoreChannel
GetEtag(channelId string) StoreChannel
- Search(teamId string, userId string, terms string, isHashtagSearch bool) StoreChannel
+ Search(teamId string, userId string, params *model.SearchParams) StoreChannel
GetForExport(channelId string) StoreChannel
}