eventlog: add flag for source builds
This commit is contained in:
@@ -175,7 +175,11 @@ function eventlogDetails(eventLog, app = null, appIdContext = '') {
|
||||
|
||||
case EVENTS.APP_INSTALL:
|
||||
if (!data.app) return '';
|
||||
return data.app.manifest.title + ' (package v' + data.app.manifest.version + ') was installed ' + appName('at', data.app);
|
||||
details = data.app.versionsUrl ? 'Community app ' : '';
|
||||
details += data.app.manifest.title + ' (package v' + data.app.manifest.version + ')';
|
||||
details += data.sourceBuild ? ' was built and installed' : ' was installed';
|
||||
details += appIdContext ? '' : ` at ${data.app.fqdn}`;
|
||||
return details;
|
||||
|
||||
case EVENTS.APP_RESTORE:
|
||||
if (!data.app) return '';
|
||||
|
||||
Reference in New Issue
Block a user