summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-07-21 01:38:44 +0100
committerSaturnino Abril <saturnino.abril@gmail.com>2017-07-21 08:38:44 +0800
commitf30c0b5d38248c98a9668e6e7eb3ec30e7943385 (patch)
tree2282e150cf1578d8af38db1b6a2f7feff680b9b1 /einterfaces
parent58839cefb50e56ae5b157b37e9814ae83ceee70b (diff)
downloadchat-f30c0b5d38248c98a9668e6e7eb3ec30e7943385.tar.gz
chat-f30c0b5d38248c98a9668e6e7eb3ec30e7943385.tar.bz2
chat-f30c0b5d38248c98a9668e6e7eb3ec30e7943385.zip
PLT-6596: Elasticsearch interface changes. (#6993)
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/elasticsearch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/einterfaces/elasticsearch.go b/einterfaces/elasticsearch.go
index b82482146..011b259b2 100644
--- a/einterfaces/elasticsearch.go
+++ b/einterfaces/elasticsearch.go
@@ -9,7 +9,7 @@ type ElasticsearchInterface interface {
Start() *model.AppError
IndexPost(post *model.Post, teamId string) *model.AppError
SearchPosts(channels *model.ChannelList, searchParams []*model.SearchParams) ([]string, *model.AppError)
- DeletePost(postId string) *model.AppError
+ DeletePost(post *model.Post) *model.AppError
TestConfig(cfg *model.Config) *model.AppError
PurgeIndexes() *model.AppError
}