From 4d97302023f208bde916f075f66de34afc1d5f2c Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Sat, 5 Aug 2023 01:14:30 +0100 Subject: [PATCH] send roles too --- controller/api.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/controller/api.js b/controller/api.js index b748811..96da790 100644 --- a/controller/api.js +++ b/controller/api.js @@ -52,6 +52,7 @@ exports.guildData = (io,bot)=> var roleRules = aux ? await getRoleRules(guild.id):null; var guildTextChannels = aux ? aux.TextChannels:null; var emojis = aux ? aux.emojis:null; + var roles = aux ? aux.roles:null; const dataObject = { id:guild.id, @@ -64,7 +65,8 @@ exports.guildData = (io,bot)=> memberCount:aux.extra?aux.extra.memberCount:null, roleRules, guildTextChannels, - emojis + emojis, + roles }; resolve(dataObject);