mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 19:32:20 +08:00
fix(webhooks): fix chat user parted webhook creation error. Closes #3524
This commit is contained in:
@ -8,6 +8,8 @@ const (
|
||||
MessageSent EventType = "CHAT"
|
||||
// UserJoined is the event sent when a chat user join action takes place.
|
||||
UserJoined EventType = "USER_JOINED"
|
||||
// UserParted is the event sent when a chat user parted action takes place.
|
||||
UserParted EventType = "USER_PARTED"
|
||||
// UserNameChanged is the event sent when a chat username change takes place.
|
||||
UserNameChanged EventType = "NAME_CHANGE"
|
||||
// VisibiltyToggled is the event sent when a chat message's visibility changes.
|
||||
|
||||
Reference in New Issue
Block a user