diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-07-13 13:24:19 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-07-19 09:58:59 +0200 |
commit | 586c58efa754ae273bc72531989e88aeba254fc4 (patch) | |
tree | 23105ec6a8a1291c810f9a19faae9cafb62c164e /core/register_command.php | |
parent | 3d874c407d95ba53541cd564c877b1acce362c6a (diff) | |
download | nextcloud-server-586c58efa754ae273bc72531989e88aeba254fc4.tar.gz nextcloud-server-586c58efa754ae273bc72531989e88aeba254fc4.zip |
add occ command to show user information
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 7fc2d969adb..70a1d7ed42e 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -138,6 +138,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\User\ResetPassword(\OC::$server->getUserManager())); $application->add(new OC\Core\Command\User\Setting(\OC::$server->getUserManager(), \OC::$server->getConfig(), \OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\User\ListCommand(\OC::$server->getUserManager())); + $application->add(new OC\Core\Command\User\Info(\OC::$server->getUserManager(), \OC::$server->getGroupManager())); $application->add(new OC\Core\Command\Group\ListCommand(\OC::$server->getGroupManager())); $application->add(new OC\Core\Command\Group\AddUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager())); |