mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 19:19:06 +03:00
18 lines
386 B
Go
18 lines
386 B
Go
|
package events
|
||
|
|
||
|
// UserPartEvent is the event fired when a user leaves chat.
|
||
|
type UserPartEvent struct {
|
||
|
Event
|
||
|
UserEvent
|
||
|
}
|
||
|
|
||
|
// GetBroadcastPayload will return the object to send to all chat users.
|
||
|
func (e *UserPartEvent) GetBroadcastPayload() EventPayload {
|
||
|
return EventPayload{
|
||
|
"type": UserParted,
|
||
|
"id": e.ID,
|
||
|
"timestamp": e.Timestamp,
|
||
|
"user": e.User,
|
||
|
}
|
||
|
}
|