eventlog: Add icon set/reset

This commit is contained in:
Girish Ramakrishnan
2019-09-27 13:44:57 -07:00
parent 6788d37b6f
commit 437e6baeba

View File

@@ -197,6 +197,12 @@ angular.module('Application').controller('ActivityController', ['$scope', '$loca
} else {
return 'Data directory of ' + name + ' was reset';
}
} else if ('icon' in data) {
if (data.icon) {
return 'Icon of ' + name + ' was set';
} else {
return 'Icon of ' + name + ' was reset';
}
}
return data.app.manifest.title + ' was re-configured at ' + (data.app.fqdn || data.app.location);