diff options
Diffstat (limited to 'bridge/config/config.go')
-rw-r--r-- | bridge/config/config.go | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go index 7b7c2f2e..16b397f3 100644 --- a/bridge/config/config.go +++ b/bridge/config/config.go @@ -23,6 +23,7 @@ const ( EventRejoinChannels = "rejoin_channels" EventUserAction = "user_action" EventMsgDelete = "msg_delete" + EventFileDelete = "file_delete" EventAPIConnected = "api_connected" EventUserTyping = "user_typing" EventGetChannelMembers = "get_channel_members" @@ -56,13 +57,14 @@ func (m Message) ParentValid() bool { } type FileInfo struct { - Name string - Data *[]byte - Comment string - URL string - Size int64 - Avatar bool - SHA string + Name string + Data *[]byte + Comment string + URL string + Size int64 + Avatar bool + SHA string + NativeID string } type ChannelInfo struct { |