summaryrefslogtreecommitdiffstats
path: root/model/message_export.go
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2018-06-22 11:15:19 +0200
committerGitHub <noreply@github.com>2018-06-22 11:15:19 +0200
commitd9390244afe90ed318ac8c263c19328f16dc2562 (patch)
tree82e834f259655acec6842b7adc19dff436f8a33d /model/message_export.go
parent8526739066ccb00ccd24b74650a7d7b284442985 (diff)
downloadchat-d9390244afe90ed318ac8c263c19328f16dc2562.tar.gz
chat-d9390244afe90ed318ac8c263c19328f16dc2562.tar.bz2
chat-d9390244afe90ed318ac8c263c19328f16dc2562.zip
MM-8810: Add CSV Compliance export (#8966)
* MM-8810: Add CSV Compliance export * Only allowing to schedule actiances export throught the cli * De-duplicating some code * Fixes on texts * Fixes on translations
Diffstat (limited to 'model/message_export.go')
-rw-r--r--model/message_export.go16
1 files changed, 11 insertions, 5 deletions
diff --git a/model/message_export.go b/model/message_export.go
index 6efb8c6a4..7ac50db25 100644
--- a/model/message_export.go
+++ b/model/message_export.go
@@ -4,7 +4,12 @@
package model
type MessageExport struct {
+ TeamId *string
+ TeamName *string
+ TeamDisplayName *string
+
ChannelId *string
+ ChannelName *string
ChannelDisplayName *string
ChannelType *string
@@ -12,9 +17,10 @@ type MessageExport struct {
UserEmail *string
Username *string
- PostId *string
- PostCreateAt *int64
- PostMessage *string
- PostType *string
- PostFileIds StringArray
+ PostId *string
+ PostCreateAt *int64
+ PostMessage *string
+ PostType *string
+ PostOriginalId *string
+ PostFileIds StringArray
}