Skip to content

Commit

Permalink
Merge pull request #12261 from nextcloud/feat/add-subscription-calend…
Browse files Browse the repository at this point in the history
…ar-occ-command

feat(caldav): create subscriptions via occ
  • Loading branch information
miaulalala authored Oct 3, 2024
2 parents c0ad730 + b5f0cfd commit 162b7b0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions admin_manual/occ_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ A set of commands to create and manage addressbooks and calendars::
dav
dav:create-addressbook Create a dav addressbook
dav:create-calendar Create a dav calendar
dav:create-subscription Create a dav calendar subscription
dav:delete-calendar Delete a dav calendar
dav:fix-missing-caldav-changes Insert missing calendarchanges rows for existing events
dav:list-calendars List all calendars of a user
Expand All @@ -536,6 +537,20 @@ This example creates a new calendar for molly::

Molly will immediately see these in the Calendar and Contacts apps.

The syntax for ``dav:create-subscription`` is
``dav:create-subscription [user] [name] [url] [optional color]``. This example creates the subscription subscription for the lunar
calendar ``Lunar Calendar`` for the user molly::

sudo -u www-data php occ dav:create-subscription molly "Lunar Calendar" webcal://cantonbecker.com/astronomy-calendar/astrocal.ics

Molly will immediately see this new subscription calendar in the Calendar app.

Optionally, a color for the new subscription calendar can be passed as a HEX color code::
sudo -u www-data php occ dav:create-subscription molly "Lunar Calendar" calendar webcal://cantonbecker.com/astronomy-calendar/astrocal.ics "#ff5733"

If not set, the theming default color will be used.

``dav:delete-calendar [--birthday] [-f|--force] <uid> [<name>]`` deletes the
calendar named ``name`` (or the birthday calendar if ``--birthday`` is
specified) of the user ``uid``. You can use the force option ``-f`` or
Expand Down

0 comments on commit 162b7b0

Please sign in to comment.