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(ocp): calendar event builder api #49888

Merged
merged 3 commits into from
Jan 8, 2025
Merged
Changes from 1 commit
Commits
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
docs(eventbuilder): Mention how to get the EventBuilder from DI
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Jan 8, 2025
commit 42fa3abc3ef31d6bfebc29b76c8f55da45c1d16c
6 changes: 5 additions & 1 deletion lib/public/Calendar/ICalendarEventBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
/**
* The calendar event builder can be used to conveniently build a calendar event and then serialize
nickvergessen marked this conversation as resolved.
Show resolved Hide resolved
* it to a ICS string. The ICS string can be submitted to calendar instances implementing the
* \OCP\Calendar\ICreateFromString interface.
* {@see \OCP\Calendar\ICreateFromString} interface.
*
* Also note this class can not be injected directly with dependency injection.
* Instead, inject {@see \OCP\Calendar\IManager} and use
* {@see \OCP\Calendar\IManager::createEventBuilder()} afterwards.
*
* All setters return self to allow chaining method calls.
*
Expand Down
Loading