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.
17 lines
391 B
17 lines
391 B
package events |
|
|
|
// UserJoinedEvent is the event fired when a user joins chat. |
|
type UserJoinedEvent struct { |
|
Event |
|
UserEvent |
|
} |
|
|
|
// GetBroadcastPayload will return the object to send to all chat users. |
|
func (e *UserJoinedEvent) GetBroadcastPayload() EventPayload { |
|
return EventPayload{ |
|
"type": UserJoined, |
|
"id": e.ID, |
|
"timestamp": e.Timestamp, |
|
"user": e.User, |
|
} |
|
}
|
|
|