summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-16 14:59:44 -0400
committerCorey Hulen <corey@hulen.com>2017-03-16 11:59:44 -0700
commit0bc3e46082d9018188262f9cb8fdbc206d0656a0 (patch)
tree4ea3c374fff76fe12ad5f325987866baa69cea09 /einterfaces
parent24848f9d6a92eb1e09189c358636fd1ba32fa6d6 (diff)
downloadchat-0bc3e46082d9018188262f9cb8fdbc206d0656a0.tar.gz
chat-0bc3e46082d9018188262f9cb8fdbc206d0656a0.tar.bz2
chat-0bc3e46082d9018188262f9cb8fdbc206d0656a0.zip
Implement GET /logs endpoint for APIv4 (#5778)
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/cluster.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/einterfaces/cluster.go b/einterfaces/cluster.go
index b7ba55144..1c6b1e071 100644
--- a/einterfaces/cluster.go
+++ b/einterfaces/cluster.go
@@ -23,7 +23,7 @@ type ClusterInterface interface {
InvalidateCacheForReactions(postId string)
Publish(event *model.WebSocketEvent)
UpdateStatus(status *model.Status)
- GetLogs() ([]string, *model.AppError)
+ GetLogs(page, perPage int) ([]string, *model.AppError)
GetClusterId() string
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
InvalidateAllCaches() *model.AppError