# -*- coding: utf-8 -*-
{
    'name': 'My Company',
    'version': '17.0.1.10.0',
    'summary': 'Company social hub — feed, kudos, announcements, and chat',
    'description': """
        My Company is an interactive social home for your organisation.

        * Central feed for posts, images, comments, and @mentions
        * Kudos and positive feedback for colleagues
        * Company-wide or team-targeted announcements
        * Three-panel hub: apps (left), feed (centre), online chat (right)
        * Optional startup page — open Odoo directly into My Company
        * Weekly engagement reminder cron for culture building
    """,
    'author': 'JB',
    'category': 'Human Resources/Employee Engagement',
    'license': 'LGPL-3',
    'depends': [
        'base',
        'web',
        'mail',
        'hr',
    ],
    'data': [
        'security/my_company_security.xml',
        'security/ir.model.access.csv',
        'data/ir_cron.xml',
        'views/mycompany_post_views.xml',
        'views/res_users_views.xml',
        'views/res_config_settings_views.xml',
        'views/menu_views.xml',
    ],
    'assets': {
        'web.assets_backend': [
            'my_company/static/src/scss/my_company.scss',
            'my_company/static/src/xml/my_company_hub.xml',
            'my_company/static/src/js/my_company_hub.js',
        ],
    },
    'installable': True,
    'application': True,
    'auto_install': False,
}
