11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
db.objects.find({type: "Group"}).forEach(function(d) {
|
|
if(typeof d.icon !== 'string') {
|
|
return;
|
|
}
|
|
d.icon = {
|
|
type: 'Image',
|
|
mediaType: 'image/jpeg',
|
|
url: d.icon
|
|
};
|
|
db.objects.save(d);
|
|
});
|