feat(eventsub): implement unban (#5990)

This commit is contained in:
nerix
2025-02-26 08:32:56 +01:00
committed by GitHub
parent 044dc69aa6
commit 5ea420b7ae
7 changed files with 384 additions and 9 deletions
@@ -178,11 +178,11 @@ struct SharedChatBan : public Ban {
struct Unban {
static constexpr std::string_view TAG = "unban";
std::string userID;
std::string userLogin;
std::string userName;
String userID;
String userLogin;
String userName;
};
struct SharedChatUnban : public Ban {
struct SharedChatUnban : public Unban {
static constexpr std::string_view TAG = "shared_chat_unban";
};