Merge pull request #2 from Danp2/Danp2-deltacopy

Enable reporting on additional backup types.
This commit is contained in:
Julien Fontanet 2016-02-10 10:45:54 +01:00
commit f3b368fae4

View File

@ -67,7 +67,9 @@ class BackupReportsXoPlugin {
// Ignore call if it's not a Backup a Snapshot or a Disaster Recovery.
if (call.method !== 'vm.rollingBackup' &&
call.method !== 'vm.rollingSnapshot' &&
call.method !== 'vm.rollingDrCopy') {
call.method !== 'vm.rollingDrCopy' &&
call.method !== 'vm.deltaCopy' &&
call.method !== 'vm.rollingDeltaBackup') {
return
}