Get groups logos

This commit is contained in:
Pierre HUBERT 2021-03-08 17:24:27 +01:00
parent 35d1e6a8b1
commit 8db5dee1c9

View File

@ -222,6 +222,15 @@ ComunicWeb.components.account.export.worker = {
}
}
/**
* Parse group information
*
* @param {Group} g Information about the target group
*/
const parseGroupInfo = (g) => {
files.add(g.icon_url)
}
//Main account information
files.add(data.advanced_info.accountImage);
@ -247,6 +256,9 @@ ComunicWeb.components.account.export.worker = {
}
}
// Groups
data.groups.forEach(parseGroupInfo)
//Related user information
for (var key in data.users_info) {
if (data.users_info.hasOwnProperty(key)) {