[FIX] web_dark_mode: Add fields to field lists

pull/2662/head
fkantelberg 2023-11-08 10:24:54 +01:00
parent 4cff6125fd
commit 41736b109f
1 changed files with 14 additions and 0 deletions

View File

@ -10,3 +10,17 @@ class ResUsers(models.Model):
dark_mode = fields.Boolean()
dark_mode_device_dependent = fields.Boolean("Device Dependent Dark Mode")
@property
def SELF_READABLE_FIELDS(self):
return super().SELF_READABLE_FIELDS + [
"dark_mode_device_dependent",
"dark_mode",
]
@property
def SELF_WRITEABLE_FIELDS(self):
return super().SELF_WRITEABLE_FIELDS + [
"dark_mode_device_dependent",
"dark_mode",
]