From f764529466b15582e0dffdf369d0947c26e54e8a Mon Sep 17 00:00:00 2001 From: Daniel Sturm <384815+dsturm@users.noreply.github.com> Date: Fri, 24 Oct 2025 13:04:53 +0200 Subject: [PATCH] fix: Don't fallback to root path, if path is omitted. --- app/Commands/Site/AuthUser/CreateAuthUserCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Commands/Site/AuthUser/CreateAuthUserCommand.php b/app/Commands/Site/AuthUser/CreateAuthUserCommand.php index 3f786bb..315a4db 100644 --- a/app/Commands/Site/AuthUser/CreateAuthUserCommand.php +++ b/app/Commands/Site/AuthUser/CreateAuthUserCommand.php @@ -58,7 +58,7 @@ public function handle(): void $data = $this->ploi->createAuthUser($serverId, $siteId, [ 'name' => $name, 'password' => $password, - 'path' => $path ?: '/', + 'path' => $path, ]); if ($data) {