__manifest__.py 745 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'OAuth2 Authentication',
  5. 'category': 'Hidden/Tools',
  6. 'description': """
  7. Allow users to login through OAuth2 Provider.
  8. =============================================
  9. """,
  10. 'depends': ['base', 'web', 'base_setup', 'auth_signup'],
  11. 'data': [
  12. 'data/auth_oauth_data.xml',
  13. 'views/auth_oauth_views.xml',
  14. 'views/res_users_views.xml',
  15. 'views/res_config_settings_views.xml',
  16. 'views/auth_oauth_templates.xml',
  17. 'security/ir.model.access.csv',
  18. ],
  19. 'assets': {
  20. 'web.assets_frontend': [
  21. 'auth_oauth/static/**/*',
  22. ],
  23. },
  24. 'license': 'LGPL-3',
  25. }