TwitchLib / TwitchLib.PubSub

PubSub component of TwitchLib.
38 stars 52 forks source link

Add OnMessageDeleted moderator action #28

Closed vaindil closed 5 years ago

vaindil commented 5 years ago

This adds the PubSub event for mods deleting messages. For reference, an example parsed version of the data payload is below.

{
  "data": {
    "type": "chat_login_moderation",
    "moderation_action": "delete",
    "args": [
      "alexanderthegreat200",
      "VoteYea VoteYea",
      "a5092c19-1d59-4480-8a32-c94794579272"
    ],
    "created_by": "pokelec",
    "created_by_user_id": "109743169",
    "msg_id": "",
    "target_user_id": "89653350"
  }
}
swiftyspiffy commented 5 years ago

Looks good, thanks!