mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00

- allows providing a canceling reason - allows nuking the splits at the same time (hopefully) Fixes #661
31 lines
826 B
Python
31 lines
826 B
Python
{
|
|
'name': 'merge bot',
|
|
'version': '1.7',
|
|
'depends': ['contacts', 'website'],
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/merge_cron.xml',
|
|
'views/res_partner.xml',
|
|
'views/runbot_merge_project.xml',
|
|
'views/mergebot.xml',
|
|
'views/queues.xml',
|
|
'views/configuration.xml',
|
|
'views/templates.xml',
|
|
'models/project_freeze/views.xml',
|
|
'models/staging_cancel/views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'runbot_merge/static/scss/runbot_merge.scss',
|
|
],
|
|
'web.assets_backend': [
|
|
'runbot_merge/static/project_freeze/index.js',
|
|
],
|
|
},
|
|
'post_load': 'enable_sentry',
|
|
'pre_init_hook': '_check_citext',
|
|
'license': 'LGPL-3',
|
|
}
|