Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-05-25 17:54:06 +0300
committerGitHub <noreply@github.com>2021-05-25 17:54:06 +0300
commit726d01843e13529777b8a043f0ed997f1bf864dd (patch)
tree09c2ecac914e501cdb2be35e43bb8d67b1237562 /core/register_command.php
parent0815be1ca85698bf571b8e907056274499226335 (diff)
parentd606799ee2b3a6e11e616cd5606901754aa70c93 (diff)
Merge pull request #26600 from hosting-de/feature/occ-tags
Add commands to manage tags via OCC
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php
index c9e86052197..8242e0d4971 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -193,6 +193,11 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\Group\RemoveUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
$application->add(new OC\Core\Command\Group\Info(\OC::$server->get(\OCP\IGroupManager::class)));
+ $application->add(new OC\Core\Command\SystemTag\ListCommand(\OC::$server->get(\OCP\SystemTag\ISystemTagManager::class)));
+ $application->add(new OC\Core\Command\SystemTag\Delete(\OC::$server->get(\OCP\SystemTag\ISystemTagManager::class)));
+ $application->add(new OC\Core\Command\SystemTag\Add(\OC::$server->get(\OCP\SystemTag\ISystemTagManager::class)));
+ $application->add(new OC\Core\Command\SystemTag\Edit(\OC::$server->get(\OCP\SystemTag\ISystemTagManager::class)));
+
$application->add(new OC\Core\Command\Security\ListCertificates(\OC::$server->getCertificateManager(), \OC::$server->getL10N('core')));
$application->add(new OC\Core\Command\Security\ImportCertificate(\OC::$server->getCertificateManager()));
$application->add(new OC\Core\Command\Security\RemoveCertificate(\OC::$server->getCertificateManager()));