diff options
Diffstat (limited to 'addons/rating/__manifest__.py')
| -rw-r--r-- | addons/rating/__manifest__.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/addons/rating/__manifest__.py b/addons/rating/__manifest__.py new file mode 100644 index 00000000..b8843f8e --- /dev/null +++ b/addons/rating/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'Customer Rating', + 'version': '1.0', + 'category': 'Productivity', + 'description': """ +This module allows a customer to give rating. +""", + 'depends': [ + 'mail', + ], + 'data': [ + 'views/rating_rating_views.xml', + 'views/rating_template.xml', + 'views/mail_message_views.xml', + 'views/assets.xml', + 'security/ir.model.access.csv' + ], + 'installable': True, + 'auto_install': False, + 'license': 'LGPL-3', +} |
