extend filter
This commit is contained in:
parent
473bfe17b7
commit
da3392f7fc
1 changed files with 7 additions and 0 deletions
|
|
@ -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',
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue