1234567891011121314151617181920212223242526272829303132333435363738 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'Dashboards',
- 'version': '1.0',
- 'category': 'Productivity',
- 'sequence': 225,
- 'summary': 'Build your own dashboards',
- 'description': """
- Lets the user create a custom dashboard.
- ========================================
- Allows users to create custom dashboard.
- """,
- 'depends': ['spreadsheet_dashboard'],
- 'data': [
- 'security/ir.model.access.csv',
- 'views/board_views.xml',
- ],
- 'application': False,
- 'assets': {
- 'web.assets_backend': [
- 'board/static/src/**/*.scss',
- 'board/static/src/**/*.js',
- 'board/static/src/**/*.xml',
- ],
- 'web.qunit_suite_tests': [
- 'board/static/tests/**/*',
- ('remove', 'board/static/tests/mobile/**/*'), # mobile test
- ],
- 'web.qunit_mobile_suite_tests': [
- 'board/static/tests/mobile/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|