info.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2017 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>oauth2</id>
  9. <name>OAuth 2.0</name>
  10. <summary>Allows OAuth2 compatible authentication from other web applications.</summary>
  11. <description>The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.</description>
  12. <version>1.19.1</version>
  13. <licence>agpl</licence>
  14. <author>Lukas Reschke</author>
  15. <namespace>OAuth2</namespace>
  16. <types>
  17. <authentication/>
  18. </types>
  19. <category>integration</category>
  20. <bugs>https://github.com/nextcloud/server/issues</bugs>
  21. <dependencies>
  22. <nextcloud min-version="31" max-version="31"/>
  23. </dependencies>
  24. <background-jobs>
  25. <job>OCA\OAuth2\BackgroundJob\CleanupExpiredAuthorizationCode</job>
  26. </background-jobs>
  27. <repair-steps>
  28. <post-migration>
  29. <step>OCA\OAuth2\Migration\SetTokenExpiration</step>
  30. </post-migration>
  31. </repair-steps>
  32. <settings>
  33. <admin>OCA\OAuth2\Settings\Admin</admin>
  34. </settings>
  35. </info>