extend filter

This commit is contained in:
Benoît Vézina 2024-04-30 14:54:48 -04:00
parent 473bfe17b7
commit da3392f7fc

View file

@ -9,14 +9,21 @@ class DirectoryWizard(models.TransientModel):
# Directories to exclude from the list, including hidden directories and directories that are not relevant # Directories to exclude from the list, including hidden directories and directories that are not relevant
EXCLUDED_DIRS = [ EXCLUDED_DIRS = [
'.idea', '.idea',
'.cache',
'.config',
'.git', '.git',
'.local',
'.odoo-deploy', '.odoo-deploy',
'.ssh',
'.testing', '.testing',
'conf', 'conf',
'design-themes', 'design-themes',
'enterprise', 'enterprise',
'filestore'
'Notes', 'Notes',
'odoo', 'odoo',
'server',
'themes',
'tools', 'tools',
'venv', 'venv',
] ]