summaryrefslogtreecommitdiff
path: root/bot/src/api/twitch/helix_client.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-12 16:53:42 +0500
committerilotterytea <iltsu@alright.party>2025-04-12 16:53:42 +0500
commitcd745390a89194fb7ae430f3bc8a73a7fc315ef0 (patch)
treee41d8f457605d95827a3dd92279b52b716b76b9d /bot/src/api/twitch/helix_client.hpp
parent8a5c0ccec6a7d03525ba4e788c47f2c3c82b0238 (diff)
feat: get users with ids and logins
Diffstat (limited to 'bot/src/api/twitch/helix_client.hpp')
-rw-r--r--bot/src/api/twitch/helix_client.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/src/api/twitch/helix_client.hpp b/bot/src/api/twitch/helix_client.hpp
index 27a9fa3..399b149 100644
--- a/bot/src/api/twitch/helix_client.hpp
+++ b/bot/src/api/twitch/helix_client.hpp
@@ -15,6 +15,9 @@ namespace bot::api::twitch {
std::vector<schemas::User> get_users(
const std::vector<std::string> &logins) const;
std::vector<schemas::User> get_users(const std::vector<int> &ids) const;
+ std::vector<schemas::User> get_users(
+ const std::vector<int> &ids,
+ const std::vector<std::string> logins) const;
std::vector<schemas::User> get_chatters(const int &broadcaster_id,
const int &moderator_id) const;