info.xml 1.1 KB

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