diff options
author | Robin Appelman <robin@icewind.nl> | 2024-06-14 13:38:55 +0200 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-08-01 10:06:50 +0200 |
commit | 9a0693117593185b7d46ff9531c0a1e1f3186076 (patch) | |
tree | e0c7938c76918a488674a35b83dc0977263b54db /core/register_command.php | |
parent | c52b7e5ebc6736de2d9991af379e4ed9885aab7b (diff) | |
download | nextcloud-server-9a0693117593185b7d46ff9531c0a1e1f3186076.tar.gz nextcloud-server-9a0693117593185b7d46ff9531c0a1e1f3186076.zip |
feat: add command to export certificate bundle
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index 2922e98671a..19d39c976b7 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -136,6 +136,7 @@ if ($config->getSystemValueBool('installed', false)) { $application->add(Server::get(Command\SystemTag\Edit::class)); $application->add(Server::get(Command\Security\ListCertificates::class)); + $application->add(Server::get(Command\Security\ExportCertificates::class)); $application->add(Server::get(Command\Security\ImportCertificate::class)); $application->add(Server::get(Command\Security\RemoveCertificate::class)); $application->add(Server::get(Command\Security\BruteforceAttempts::class)); |