fix(user_status): Allow null userId in UserStatusController

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin 2024-12-11 10:20:48 +01:00
parent 35c4bfd64e
commit 654a7d22ff
No known key found for this signature in database

View file

@ -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,