feat(eventsub): implement AutoMod term actions (#6000)

This commit is contained in:
nerix
2025-02-27 18:12:42 +01:00
committed by GitHub
parent a89c1910ba
commit 814734e869
13 changed files with 1784 additions and 9 deletions
@@ -282,11 +282,11 @@ struct AutomodTerms {
static constexpr std::string_view FIELD = "automod_terms";
// either add or remove
std::string action;
String action;
// either blocked or permitted
std::string list;
String list;
std::vector<std::string> terms;
std::vector<String> terms;
bool fromAutomod;
};