summaryrefslogtreecommitdiffstats
path: root/app/audit.go
blob: 6978e9bc2f3a2219c05a6fe964d85c3e1c3012d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"github.com/mattermost/platform/model"
)

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