odoo/addons/website_project_issue/__manifest__.py

20 lines
691 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Website Project Issue',
'category': 'Hidden',
'version': '0.1',
'complexity': 'easy',
'description': """
This module adds project issues inside your account's page on website if project_issue and website_portal are installed.
==================================================================================================
""",
'depends': ['project_issue', 'website_project'],
'data': [
'security/portal_security.xml',
'security/ir.model.access.csv',
'views/project_issue_templates.xml',
],
'auto_install': True,
}