12 lines
214 B
JavaScript
12 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);
|
||
|
});
|