info.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <id>dav</id>
  5. <name>WebDAV</name>
  6. <summary>WebDAV endpoint</summary>
  7. <description>WebDAV endpoint</description>
  8. <version>1.6.0</version>
  9. <licence>agpl</licence>
  10. <author>owncloud.org</author>
  11. <namespace>DAV</namespace>
  12. <default_enable/>
  13. <types>
  14. <filesystem/>
  15. </types>
  16. <category>integration</category>
  17. <bugs>https://github.com/nextcloud/server/issues</bugs>
  18. <dependencies>
  19. <nextcloud min-version="14" max-version="14" />
  20. </dependencies>
  21. <background-jobs>
  22. <job>OCA\DAV\BackgroundJob\CleanupDirectLinksJob</job>
  23. <job>OCA\DAV\BackgroundJob\UpdateCalendarResourcesRoomsBackgroundJob</job>
  24. <job>OCA\DAV\BackgroundJob\CleanupInvitationTokenJob</job>
  25. </background-jobs>
  26. <repair-steps>
  27. <post-migration>
  28. <step>OCA\DAV\Migration\FixBirthdayCalendarComponent</step>
  29. <step>OCA\DAV\Migration\CalDAVRemoveEmptyValue</step>
  30. <step>OCA\DAV\Migration\BuildCalendarSearchIndex</step>
  31. </post-migration>
  32. </repair-steps>
  33. <commands>
  34. <command>OCA\DAV\Command\CreateAddressBook</command>
  35. <command>OCA\DAV\Command\CreateCalendar</command>
  36. <command>OCA\DAV\Command\SyncBirthdayCalendar</command>
  37. <command>OCA\DAV\Command\SyncSystemAddressBook</command>
  38. <command>OCA\DAV\Command\RemoveInvalidShares</command>
  39. </commands>
  40. <settings>
  41. <admin>OCA\DAV\Settings\CalDAVSettings</admin>
  42. </settings>
  43. <activity>
  44. <settings>
  45. <setting>OCA\DAV\CalDAV\Activity\Setting\Calendar</setting>
  46. <setting>OCA\DAV\CalDAV\Activity\Setting\Event</setting>
  47. <setting>OCA\DAV\CalDAV\Activity\Setting\Todo</setting>
  48. </settings>
  49. <filters>
  50. <filter>OCA\DAV\CalDAV\Activity\Filter\Calendar</filter>
  51. <filter>OCA\DAV\CalDAV\Activity\Filter\Todo</filter>
  52. </filters>
  53. <providers>
  54. <provider>OCA\DAV\CalDAV\Activity\Provider\Calendar</provider>
  55. <provider>OCA\DAV\CalDAV\Activity\Provider\Event</provider>
  56. <provider>OCA\DAV\CalDAV\Activity\Provider\Todo</provider>
  57. </providers>
  58. </activity>
  59. <public>
  60. <webdav>appinfo/v1/publicwebdav.php</webdav>
  61. </public>
  62. </info>