owncast/models/userJoinedEvent.go
Gabe Kangas b80ccc4966
WIP
2024-03-25 09:04:05 -07:00

17 lines
391 B
Go

package models
// 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,
}
}