Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(conversations): handle event conversation rooms #14499

Draft
wants to merge 18 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
507ae6c
feat(conversations): handle event conversation rooms
miaulalala Feb 25, 2025
d931137
fixup! feat(conversations): handle event conversation rooms
miaulalala Feb 26, 2025
8f9957f
fixup! feat(conversations): handle event conversation rooms
miaulalala Feb 27, 2025
df44c48
fixup! feat(conversations): handle event conversation rooms
miaulalala Feb 27, 2025
24dd028
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 5, 2025
6d4a40a
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 6, 2025
90e593f
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 10, 2025
dffc2e0
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
e233939
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
6416bbf
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
89f5197
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
4972b84
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
cb24bc9
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
d12579c
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 11, 2025
205ffe3
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 12, 2025
452579c
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 12, 2025
77fd7b8
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 12, 2025
4218df1
fixup! feat(conversations): handle event conversation rooms
miaulalala Mar 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! feat(conversations): handle event conversation rooms
miaulalala committed Mar 12, 2025
commit 205ffe302fc721e2844b346a2542419df0c16536
11 changes: 11 additions & 0 deletions tests/stubs/sabre_vobject_reader.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Sabre\VObject {

class Reader {
public static function read($data, $options = 0, $charset = 'UTF-8'){}
}
}

Unchanged files with check annotations Beta

private Manager $manager,
private RoomService $roomService,
private LoggerInterface $logger,
private TimezoneService $timezoneService,

Check failure on line 35 in lib/Listener/CalDavEventListener.php

GitHub Actions / static-psalm-analysis

lib/Listener/CalDavEventListener.php:35:3: UndefinedClass: Class, interface or enum named OCA\DAV\CalDAV\TimezoneService does not exist (see https://psalm.dev/019)
private ParticipantService $participantService,
private string $userId,
) {
}
try {
$vobject = Reader::read($calData);

Check failure on line 58 in lib/Listener/CalDavEventListener.php

GitHub Actions / static-psalm-analysis

lib/Listener/CalDavEventListener.php:58:15: UndefinedClass: Class, interface or enum named Sabre\VObject\Reader does not exist (see https://psalm.dev/019)
} catch (ParseException $e) { /** Undocumented in sabre code */
$this->logger->warning($e->getMessage());
return;