Enable marketplace item test for avatar url

This commit is contained in:
Kerry Ivan Kurian 2018-09-18 12:36:03 -07:00
parent 8f5923d562
commit 645ad2bb7a

View file

@ -76,8 +76,12 @@ Rectangle {
property var actions: {
"forward": function(resource, assetType){
if ("application" == assetType) {
Commerce.openApp(resource);
switch(assetType) {
case "application":
Commerce.openApp(resource);
break
case "avatar":
MyAvatar.useFullAvatarURL(resource);
}
// XXX support other resource types here.
},