Refactor "msg-parent-not-found" to config.ParentIDNotFound

This commit is contained in:
Qais Patankar
2020-12-31 16:16:38 +00:00
parent 6cadf12260
commit e0278aa9dc
6 changed files with 21 additions and 8 deletions
+10
View File
@@ -29,6 +29,8 @@ const (
EventNoticeIRC = "notice_irc"
)
const ParentIDNotFound = "msg-parent-not-found"
type Message struct {
Text string `json:"text"`
Channel string `json:"channel"`
@@ -45,6 +47,14 @@ type Message struct {
Extra map[string][]interface{}
}
func (m Message) ParentNotFound() bool {
return m.ParentID == ParentIDNotFound
}
func (m Message) ParentValid() bool {
return m.ParentID != "" && !m.ParentNotFound()
}
type FileInfo struct {
Name string
Data *[]byte