From 81e6f75aa491c7bfa11780dd622587cf5fff3c8f Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 2 May 2022 00:10:54 +0200 Subject: Update dependencies (#1822) --- .../github.com/mattermost/mattermost-server/v6/model/channel.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'vendor/github.com/mattermost/mattermost-server/v6/model/channel.go') diff --git a/vendor/github.com/mattermost/mattermost-server/v6/model/channel.go b/vendor/github.com/mattermost/mattermost-server/v6/model/channel.go index 2f353c7c..350a9230 100644 --- a/vendor/github.com/mattermost/mattermost-server/v6/model/channel.go +++ b/vendor/github.com/mattermost/mattermost-server/v6/model/channel.go @@ -178,6 +178,14 @@ func (o *Channel) DeleteAt_() float64 { return float64(o.DeleteAt) } +func (o *Channel) LastPostAt_() float64 { + return float64(o.LastPostAt) +} + +func (o *Channel) TotalMsgCount_() float64 { + return float64(o.TotalMsgCount) +} + func (o *Channel) DeepCopy() *Channel { copy := *o if copy.SchemeId != nil { -- cgit v1.2.3