mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
18 lines
391 B
Go
18 lines
391 B
Go
|
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,
|
||
|
}
|
||
|
}
|