summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-02-21 21:07:57 +0900
committerGeorge Goldberg <george@gberg.me>2017-02-21 12:07:57 +0000
commit5c19d9be7f20d4528331a0f9f6673d20bf16d57a (patch)
tree172c6483af5c7984724d1381cb4fc7616542bbd6 /store/store.go
parent7068307a1c12d7e045f68e73448ab728fc2b10c7 (diff)
downloadchat-5c19d9be7f20d4528331a0f9f6673d20bf16d57a.tar.gz
chat-5c19d9be7f20d4528331a0f9f6673d20bf16d57a.tar.bz2
chat-5c19d9be7f20d4528331a0f9f6673d20bf16d57a.zip
Implement endpoint for APIv4: GET /users/{user_id}/audits (#5472)
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 1a43767dd..6c78a235d 100644
--- a/store/store.go
+++ b/store/store.go
@@ -208,7 +208,7 @@ type SessionStore interface {
type AuditStore interface {
Save(audit *model.Audit) StoreChannel
- Get(user_id string, limit int) StoreChannel
+ Get(user_id string, offset int, limit int) StoreChannel
PermanentDeleteByUser(userId string) StoreChannel
}