summaryrefslogtreecommitdiffstats
path: root/app/audit.go
blob: 857c2fa462ea45ecd2e74f534a678e4d850de73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"github.com/mattermost/mattermost-server/model"
)

func (a *App) GetAudits(userId string, limit int) (model.Audits, *model.AppError) {
	result := <-a.Srv.Store.Audit().Get(userId, 0, limit)
	if result.Err != nil {
		return nil, result.Err
	}
	return result.Data.(model.Audits), nil
}

func (a *App) GetAuditsPage(userId string, page int, perPage int) (model.Audits, *model.AppError) {
	result := <-a.Srv.Store.Audit().Get(userId, page*perPage, perPage)
	if result.Err != nil {
		return nil, result.Err
	}
	return result.Data.(model.Audits), nil
}