mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-31064: Simplify indentation Reduce indentation where possible. ```release-note NONE ``` Command ran to verify: golangci-lint run --disable-all --enable golint --max-issues-per-linter=10000 --max-same-issues=100000 ./... | grep "block ends with a return state" https://mattermost.atlassian.net/browse/MM-31064 * incorporate review comments * enable golint for outdent rule * fix remaining issues Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
34 lines
554 B
Go
34 lines
554 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
type Audits []Audit
|
|
|
|
func (o Audits) Etag() string {
|
|
if len(o) > 0 {
|
|
// the first in the list is always the most current
|
|
return Etag(o[0].CreateAt)
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (o Audits) ToJson() string {
|
|
b, err := json.Marshal(o)
|
|
if err != nil {
|
|
return "[]"
|
|
}
|
|
return string(b)
|
|
}
|
|
|
|
func AuditsFromJson(data io.Reader) Audits {
|
|
var o Audits
|
|
json.NewDecoder(data).Decode(&o)
|
|
return o
|
|
}
|