__manifest__.py 437 B

1234567891011121314151617181920
  1. {
  2. 'name': "TOTPortal",
  3. 'category': 'Hidden',
  4. 'depends': ['portal', 'auth_totp'],
  5. 'auto_install': True,
  6. 'data': [
  7. 'security/security.xml',
  8. 'views/templates.xml',
  9. ],
  10. 'assets': {
  11. 'web.assets_frontend': [
  12. 'auth_totp_portal/static/src/**/*',
  13. ],
  14. 'web.assets_tests': [
  15. 'auth_totp_portal/static/tests/**/*',
  16. ],
  17. },
  18. 'license': 'LGPL-3',
  19. }