feat: show BTTV Pro badges (#6625)

Reviewed-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
This commit is contained in:
nerix
2025-12-07 15:15:58 +01:00
committed by GitHub
parent ab8e0751b1
commit 0aff6fbe83
31 changed files with 394 additions and 82 deletions
+7
View File
@@ -16,6 +16,7 @@
#include "mocks/Logging.hpp"
#include "mocks/TwitchIrcServer.hpp"
#include "mocks/UserData.hpp"
#include "providers/bttv/BttvBadges.hpp"
#include "providers/ffz/FfzBadges.hpp"
#include "providers/seventv/SeventvBadges.hpp"
#include "providers/twitch/api/Helix.hpp"
@@ -102,6 +103,11 @@ public:
return &this->ffzBadges;
}
BttvBadges *getBttvBadges() override
{
return &this->bttvBadges;
}
SeventvBadges *getSeventvBadges() override
{
return &this->seventvBadges;
@@ -154,6 +160,7 @@ public:
mock::MockTwitchIrcServer twitch;
mock::ChatterinoBadges chatterinoBadges;
FfzBadges ffzBadges;
BttvBadges bttvBadges;
SeventvBadges seventvBadges;
HighlightController highlights;
BttvEmotes bttvEmotes;