Skip to content

Commit

Permalink
Perform database changes review to support integration of #4327
Browse files Browse the repository at this point in the history
Changes:
- Performed code review of the variables name choice to keep codebase uniform
  • Loading branch information
evilaliv3 committed Nov 23, 2024
1 parent 4be8f8b commit 0fee1ab
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions backend/globaleaks/models/config_desc.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ class Bool(Item):
'max_msg_external_to_whistle_not_aff': Int(default=1),
'external_organization_activation': Bool(default=True),
'global_stat_pub_key': Unicode(default=''),
'backup_enable': Bool(default=False),
'backup_time_ISO_8601': Unicode(default=''),
'backup_destination_path': Unicode(default='')
'backup_enabled': Bool(default=False),
'backup_path': Unicode(default=''),
'backup_time': Unicode(default='')

}

Expand Down Expand Up @@ -214,8 +214,9 @@ class Bool(Item):
'wizard_done',
'uuid',
'backup_destination_path',
'backup_enable',
'backup_time_ISO_8601',
'backup_enabled',
'backup_path',
'backup_time',
'url_file_analysis',
'external_organization_activation'
],
Expand Down

0 comments on commit 0fee1ab

Please sign in to comment.