67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Forum',
|
|
'category': 'Website/Website',
|
|
'sequence': 265,
|
|
'summary': 'Manage a forum with FAQ and Q&A',
|
|
'version': '1.1',
|
|
'description': """
|
|
Ask questions, get answers, no distractions
|
|
""",
|
|
'website': 'https://www.odoo.com/app/forum',
|
|
'depends': [
|
|
'auth_signup',
|
|
'website_mail',
|
|
'website_profile',
|
|
],
|
|
'data': [
|
|
'data/forum_default_faq.xml',
|
|
'data/forum_data.xml',
|
|
'data/mail_message_subtype_data.xml',
|
|
'data/mail_templates.xml',
|
|
'views/forum.xml',
|
|
'views/res_users_views.xml',
|
|
'views/website_forum.xml',
|
|
'views/website_forum_profile.xml',
|
|
'views/ir_qweb.xml',
|
|
'views/snippets/snippets.xml',
|
|
'views/website_pages_views.xml',
|
|
'views/forum_forum_add.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/website_forum_security.xml',
|
|
'data/badges_question.xml',
|
|
'data/badges_answer.xml',
|
|
'data/badges_participation.xml',
|
|
'data/badges_moderation.xml',
|
|
],
|
|
'demo': [
|
|
'data/forum_demo.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'assets': {
|
|
'website.assets_editor': [
|
|
'website_forum/static/src/js/systray_items/*.js',
|
|
],
|
|
'web.assets_tests': [
|
|
'website_forum/static/tests/**/*',
|
|
],
|
|
'web.assets_common': [
|
|
'website_forum/static/src/js/tours/website_forum.js',
|
|
],
|
|
'web.assets_frontend': [
|
|
'website_forum/static/src/js/tours/website_forum.js',
|
|
'website_forum/static/src/scss/website_forum.scss',
|
|
'website_forum/static/src/js/website_forum.js',
|
|
'website_forum/static/src/js/website_forum.share.js',
|
|
'website_forum/static/src/xml/public_templates.xml',
|
|
],
|
|
'web_editor.assets_wysiwyg': {
|
|
'website_forum/static/src/xml/forum_wysiwyg.xml',
|
|
},
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|