mirror of https://github.com/zulip/zulip.git
settings_config: Add waiting_period_threshold_dropdown_values.
This list will be used in further commits in settings_org.js code for waiting period threshold setting.
This commit is contained in:
parent
43898be138
commit
4dd1676e96
|
@ -349,6 +349,21 @@ export const time_limit_dropdown_values = [
|
|||
export const msg_edit_limit_dropdown_values = time_limit_dropdown_values;
|
||||
export const msg_delete_limit_dropdown_values = time_limit_dropdown_values;
|
||||
|
||||
export const waiting_period_threshold_dropdown_values = [
|
||||
{
|
||||
description: $t({defaultMessage: "None"}),
|
||||
code: 0,
|
||||
},
|
||||
{
|
||||
description: $t({defaultMessage: "3 days"}),
|
||||
code: 3,
|
||||
},
|
||||
{
|
||||
description: $t({defaultMessage: "Custom"}),
|
||||
code: "custom_period",
|
||||
},
|
||||
];
|
||||
|
||||
export const retain_message_forever = -1;
|
||||
|
||||
export const user_role_values = {
|
||||
|
|
Loading…
Reference in New Issue