Skip to content

Commit f764529

Browse files
authored
fix: Don't fallback to root path, if path is omitted.
1 parent a552777 commit f764529

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Commands/Site/AuthUser/CreateAuthUserCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function handle(): void
5858
$data = $this->ploi->createAuthUser($serverId, $siteId, [
5959
'name' => $name,
6060
'password' => $password,
61-
'path' => $path ?: '/',
61+
'path' => $path,
6262
]);
6363

6464
if ($data) {

0 commit comments

Comments
 (0)