diff options
author | Andreas Fischer <bantu@owncloud.com> | 2014-05-28 22:53:44 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2014-05-28 22:53:44 +0200 |
commit | f81ee94cad8a997c3a2fef0b6aac4f8d509571f6 (patch) | |
tree | 08656d0413e965a1bed84f1f4f329a09f1522a2b /core/command | |
parent | 8981929e92b9dc22e6542f16dc1cbce7cc338a9f (diff) | |
download | nextcloud-server-f81ee94cad8a997c3a2fef0b6aac4f8d509571f6.tar.gz nextcloud-server-f81ee94cad8a997c3a2fef0b6aac4f8d509571f6.zip |
Move resetpassword into user: command space.
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/user/resetpassword.php (renamed from core/command/resetpassword.php) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/command/resetpassword.php b/core/command/user/resetpassword.php index ddff7a980d0..d7893c291e4 100644 --- a/core/command/resetpassword.php +++ b/core/command/user/resetpassword.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -namespace OC\Core\Command; +namespace OC\Core\Command\User; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; @@ -25,7 +25,7 @@ class ResetPassword extends Command { protected function configure() { $this - ->setName('resetpassword') + ->setName('user:resetpassword') ->setDescription('Resets the password of the named user') ->addArgument( 'user', |