nextcloud / server

☁️ Nextcloud server, a safe home for all your data
https://nextcloud.com
GNU Affero General Public License v3.0
26.67k stars 4k forks source link

[FR] Allow to create `task list` (VTODO) caldav object #41014

Open bkupidura opened 10 months ago

bkupidura commented 10 months ago

Is your feature request related to a problem? Please describe. With builtin calendar i would like to create just task list. Currently i can create calendar or calendar + task list but not task list only. This leads that my todo calendars are visible in 3rd party software - when i just need reminders.

Describe the solution you'd like Allow user to create calendar, task list or calendar + task list.

Additional context Same problem was reported in https://github.com/nextcloud/server/issues/8625, but it was closed without resolution.

Workaround As a admin, you can change calendar type directly in DB - but its not very user friendly :)

select id,displayname,principaluri,components from oc_calendars;
update oc_calendars set components='VTODO' where id in (6, 7, 8, 9, 10, 11, 12)
egandro commented 6 months ago

I can confirm thisis an issue e.g. Taskwarrior <-> NextCloud Sync is alsonot working:

https://github.com/bergercookie/syncall/blob/master/docs/readme-tw-caldav.md#example-usage

Calendar TaskWarrior found but does not support VTODO entries - please choose a different calendar

Edit: I made it work. You need the calendar and the task app installed on nextcloud.