mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-21 16:02:09 +02:00
Initial commit: Mail packages
This commit is contained in:
commit
4e53507711
1948 changed files with 751201 additions and 0 deletions
59
odoo-bringout-oca-ocb-sms/sms/__manifest__.py
Normal file
59
odoo-bringout-oca-ocb-sms/sms/__manifest__.py
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'SMS gateway',
|
||||
'version': '2.4',
|
||||
'category': 'Hidden/Tools',
|
||||
'summary': 'SMS Text Messaging',
|
||||
'description': """
|
||||
This module gives a framework for SMS text messaging
|
||||
----------------------------------------------------
|
||||
|
||||
The service is provided by the In App Purchase Odoo platform.
|
||||
""",
|
||||
'depends': [
|
||||
'base',
|
||||
'iap_mail',
|
||||
'mail',
|
||||
'phone_validation'
|
||||
],
|
||||
'data': [
|
||||
'data/ir_cron_data.xml',
|
||||
'wizard/sms_composer_views.xml',
|
||||
'wizard/sms_template_preview_views.xml',
|
||||
'wizard/sms_resend_views.xml',
|
||||
'wizard/sms_template_reset_views.xml',
|
||||
'views/ir_actions_server_views.xml',
|
||||
'views/mail_notification_views.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/res_partner_views.xml',
|
||||
'views/sms_sms_views.xml',
|
||||
'views/sms_template_views.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'security/sms_security.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/sms_demo.xml',
|
||||
'data/mail_demo.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'mail.assets_messaging': [
|
||||
'sms/static/src/models/*.js',
|
||||
],
|
||||
'mail.assets_discuss_public': [
|
||||
'sms/static/src/components/sms_button/*',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'sms/static/src/js/fields_phone_widget.js',
|
||||
'sms/static/src/components/*/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'sms/static/tests/sms_widget_test.js',
|
||||
'sms/static/tests/qunit_suite_tests/**/*.js',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue