[FIX] database_cleanup: exclude password fields

cf discussion on OCA/server-tools#1408
pull/2684/head
Martin Trigaux 2019-04-08 18:01:45 +02:00 committed by Miika Nissi
parent 6278702ed3
commit 03b6874a51
No known key found for this signature in database
GPG Key ID: B20DC9FCFAF92E7F
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class CleanupPurgeWizardColumn(models.TransientModel):
# Format: {table: [fields]}
blacklist = {
'wkf_instance': ['uid'], # lp:1277899
'res_users': ['password', 'password_crypt'],
}
@api.model