eventlog: add certificate.cleanup

This commit is contained in:
Girish Ramakrishnan
2022-02-24 19:55:26 -08:00
parent 10c0679d8f
commit 6009105cd4
2 changed files with 5 additions and 0 deletions

View File

@@ -3248,6 +3248,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
var ACTION_BACKUP_CLEANUP_FINISH = 'backup.cleanup.finish';
var ACTION_CERTIFICATE_NEW = 'certificate.new';
var ACTION_CERTIFICATE_RENEWAL = 'certificate.renew';
var ACTION_CERTIFICATE_CLEANUP = 'certificate.cleanup';
var ACTION_DASHBOARD_DOMAIN_UPDATE = 'dashboard.domain.update';
@@ -3496,6 +3497,9 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
case ACTION_CERTIFICATE_RENEWAL:
return 'Certificate renewal for ' + data.domain + (errorMessage ? ' failed' : ' succeeded');
case ACTION_CERTIFICATE_CLEANUP:
return 'Certificate(s) of ' + data.domains.join(',') + ' was cleaned up since they expired 6 months ago';
case ACTION_DASHBOARD_DOMAIN_UPDATE:
return 'Dashboard domain set to ' + data.fqdn;