mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 08:32:03 +02:00
15 lines
501 B
Python
15 lines
501 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
SCRIPT_EXTENSIONS = ('js',)
|
|
STYLE_EXTENSIONS = ('css', 'scss', 'sass', 'less')
|
|
TEMPLATE_EXTENSIONS = ('xml',)
|
|
ASSET_EXTENSIONS = SCRIPT_EXTENSIONS + STYLE_EXTENSIONS + TEMPLATE_EXTENSIONS
|
|
|
|
SUPPORTED_DEBUGGER = {'pdb', 'ipdb', 'wdb', 'pudb'}
|
|
EXTERNAL_ASSET = object()
|
|
|
|
PREFETCH_MAX = 1000
|
|
"""Maximum number of prefetched records"""
|
|
|
|
GC_UNLINK_LIMIT = 100_000
|
|
"""Maximuum number of records to clean in a single transaction."""
|