From 1738224fcae67100fe1aaa0363744d9c74dd53fc Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Fri, 10 May 2024 18:27:17 +0200 Subject: [PATCH] core/xmlrpc - add google drive as migration / backup target. The primary use for this is to restore these settings in System/Configuration/Backups now they share the same metadata. --- src/etc/inc/plugins.inc.d/core.inc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/etc/inc/plugins.inc.d/core.inc b/src/etc/inc/plugins.inc.d/core.inc index 5a4913950..a07c9b475 100644 --- a/src/etc/inc/plugins.inc.d/core.inc +++ b/src/etc/inc/plugins.inc.d/core.inc @@ -449,6 +449,13 @@ function core_xmlrpc_sync() 'services' => ["webgui"], ); + $result[] = array( + 'description' => gettext('Backup - Google Drive'), + 'section' => 'system.remotebackup', + 'id' => 'remotebackup' + ); + + return $result; }