File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,9 @@ setConfigurationValue() {
95
95
[\[\( ]* [\]\) ])
96
96
TYPE=" array"
97
97
;;
98
+ ^{)
99
+ TYPE=" object"
100
+ ;;
98
101
* )
99
102
TYPE=" string"
100
103
;;
@@ -109,7 +112,7 @@ setConfigurationValue() {
109
112
literal)
110
113
VALUE=" $1 "
111
114
;;
112
- bool|boolean|int|integer|array)
115
+ bool|boolean|int|integer|array|object )
113
116
VALUE=" $KEY = $2 "
114
117
;;
115
118
string|* )
@@ -262,6 +265,15 @@ zulipConfiguration() {
262
265
[ " $setting_key " = " ALLOWED_HOSTS" ]; then
263
266
type=" array"
264
267
fi
268
+ if [ " $setting_key " = " SOCIAL_AUTH_SAML_ORG_INFO" ] || \
269
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_TECHNICAL_CONTACT" ] || \
270
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_SUPPORT_CONTACT" ] || \
271
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_SECURITY_CONFIG" ] || \
272
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_SP_EXTRA" ] || \
273
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_SECURITY_CONFIG" ] || \
274
+ [ " $setting_key " = " SOCIAL_AUTH_SAML_ENABLED_IDPS" ]; then
275
+ type=" object"
276
+ fi
265
277
if [ " $SPECIAL_SETTING_DETECTION_MODE " = " True" ] || [ " $SPECIAL_SETTING_DETECTION_MODE " = " true" ] || \
266
278
[ " $type " = " string" ]; then
267
279
type=" "
You can’t perform that action at this time.
0 commit comments