fix(user_status): Allow null userId in UserStatusController

Signed-off-by: provokateurin <kate@provokateurin.de>
pull/49797/head
provokateurin 2024-12-11 10:20:48 +07:00
parent 35c4bfd64e
commit 654a7d22ff
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

@ -36,7 +36,7 @@ class UserStatusController extends OCSController {
public function __construct(
string $appName,
IRequest $request,
private string $userId,
private ?string $userId,
private LoggerInterface $logger,
private StatusService $service,
private CalendarStatusService $calendarStatusService,