You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
401 B
20 lines
401 B
package events |
|
|
|
type ActionEvent struct { |
|
Event |
|
MessageEvent |
|
} |
|
|
|
// ActionEvent will return the object to send to all chat users. |
|
func (e *ActionEvent) GetBroadcastPayload() EventPayload { |
|
return EventPayload{ |
|
"id": e.Id, |
|
"timestamp": e.Timestamp, |
|
"body": e.Body, |
|
"type": e.GetMessageType(), |
|
} |
|
} |
|
|
|
func (e *ActionEvent) GetMessageType() EventType { |
|
return ChatActionSent |
|
}
|
|
|