added new cli command froxlor:user for unlocking, password-changing and info-display of a user

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-08-21 12:47:20 +02:00
parent f389226aae
commit bcda1d51c4
4 changed files with 192 additions and 53 deletions

View File

@@ -34,6 +34,7 @@ use Froxlor\Cli\SwitchServerIp;
use Froxlor\Cli\UpdateCommand;
use Froxlor\Cli\InstallCommand;
use Froxlor\Cli\MasterCron;
use Froxlor\Cli\UserCommand;
use Froxlor\Froxlor;
// validate correct php version
@@ -57,4 +58,5 @@ $application->add(new SwitchServerIp());
$application->add(new UpdateCommand());
$application->add(new InstallCommand());
$application->add(new MasterCron());
$application->add(new UserCommand());
$application->run();