1
0

info.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-License-Identifier: AGPL-3.0-or-later
  5. -->
  6. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  8. <id>user_status</id>
  9. <name>User status</name>
  10. <summary>User status</summary>
  11. <description><![CDATA[User status]]></description>
  12. <version>1.11.0</version>
  13. <licence>agpl</licence>
  14. <author mail="oc.list@georgehrke.com" >Georg Ehrke</author>
  15. <namespace>UserStatus</namespace>
  16. <category>social</category>
  17. <bugs>https://github.com/nextcloud/server</bugs>
  18. <navigations>
  19. <navigation>
  20. <id>user_status-menu-entry</id>
  21. <name>User status</name>
  22. <order>1</order>
  23. <type>settings</type>
  24. </navigation>
  25. </navigations>
  26. <dependencies>
  27. <nextcloud min-version="31" max-version="31"/>
  28. </dependencies>
  29. <background-jobs>
  30. <job>OCA\UserStatus\BackgroundJob\ClearOldStatusesBackgroundJob</job>
  31. </background-jobs>
  32. <contactsmenu>
  33. <provider>OCA\UserStatus\ContactsMenu\StatusProvider</provider>
  34. </contactsmenu>
  35. </info>