diff options
author | kondou <kondou@ts.unde.re> | 2014-05-12 15:33:26 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2014-05-12 15:33:26 +0200 |
commit | 011bd0a1c47e32fb9df9fdd63524d24b04a7ae14 (patch) | |
tree | 0f312c6a48332442636fbe3b02c25ba2943cf4b1 /core/register_command.php | |
parent | f4e8de3cbbf426e7b22d5100085626b2e4fefc29 (diff) | |
download | nextcloud-server-011bd0a1c47e32fb9df9fdd63524d24b04a7ae14.tar.gz nextcloud-server-011bd0a1c47e32fb9df9fdd63524d24b04a7ae14.zip |
Add a resetadminpass command to console - fix #8248
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 2efa838e9ee..ef5456a1bd1 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -10,6 +10,7 @@ $application->add(new OC\Core\Command\Status); $application->add(new OC\Core\Command\Db\GenerateChangeScript()); $application->add(new OC\Core\Command\Upgrade()); +$application->add(new OC\Core\Command\ResetAdminPass()); $application->add(new OC\Core\Command\Maintenance\SingleUser()); $application->add(new OC\Core\Command\App\Disable()); $application->add(new OC\Core\Command\App\Enable()); |