mirror of https://github.com/zulip/zulip.git
models: Sort UserBaseSettings.property_types dict by key.
This commit is contained in:
parent
375b48f013
commit
9e979e9e66
|
@ -1520,10 +1520,10 @@ class UserBaseSettings(models.Model):
|
||||||
**notification_setting_types,
|
**notification_setting_types,
|
||||||
**dict(
|
**dict(
|
||||||
# Add new general settings here.
|
# Add new general settings here.
|
||||||
send_stream_typing_notifications=bool,
|
escape_navigates_to_default_view=bool,
|
||||||
send_private_typing_notifications=bool,
|
send_private_typing_notifications=bool,
|
||||||
send_read_receipts=bool,
|
send_read_receipts=bool,
|
||||||
escape_navigates_to_default_view=bool,
|
send_stream_typing_notifications=bool,
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue