summaryrefslogtreecommitdiffstats
path: root/model/channel_member_history_result.go
diff options
context:
space:
mode:
authorMartin Kraft <martinkraft@gmail.com>2018-02-14 08:53:25 -0500
committerMartin Kraft <martinkraft@gmail.com>2018-02-14 08:53:25 -0500
commit642d78173af8cf600cdf81a341d87e75e7854172 (patch)
treef02ffb39d35c76319607b1b96e896a3db35ee746 /model/channel_member_history_result.go
parentbfb2e85bf6d31a0b2b35a9b4369a94c479b371d9 (diff)
parentbf1fdf92c71df29ddb7b0e31a00e218863c1158c (diff)
downloadchat-642d78173af8cf600cdf81a341d87e75e7854172.tar.gz
chat-642d78173af8cf600cdf81a341d87e75e7854172.tar.bz2
chat-642d78173af8cf600cdf81a341d87e75e7854172.zip
Merge remote-tracking branch 'origin/master' into advanced-permissions-phase-1
Diffstat (limited to 'model/channel_member_history_result.go')
-rw-r--r--model/channel_member_history_result.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/model/channel_member_history_result.go b/model/channel_member_history_result.go
new file mode 100644
index 000000000..ed3e79639
--- /dev/null
+++ b/model/channel_member_history_result.go
@@ -0,0 +1,15 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package model
+
+type ChannelMemberHistoryResult struct {
+ ChannelId string
+ UserId string
+ JoinTime int64
+ LeaveTime *int64
+
+ // these two fields are never set in the database - when we SELECT, we join on Users to get them
+ UserEmail string `db:"Email"`
+ Username string
+}