From 27b29957e8665ade9035f6d4ea3b7fc658e2b6ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sun, 11 Oct 2020 14:57:04 +0300 Subject: [PATCH] Update Settings.md --- docs/en/UI/AspNetCore/JavaScript-API/Settings.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/en/UI/AspNetCore/JavaScript-API/Settings.md b/docs/en/UI/AspNetCore/JavaScript-API/Settings.md index 9079e9776d..cf96cecdd0 100644 --- a/docs/en/UI/AspNetCore/JavaScript-API/Settings.md +++ b/docs/en/UI/AspNetCore/JavaScript-API/Settings.md @@ -17,3 +17,17 @@ var requiredLength = abp.setting.getInt('Abp.Identity.Password.RequiredLength'); var requireDigit = abp.setting.getBoolean('Abp.Identity.Password.RequireDigit'); ```` +## All Values + +`abp.setting.values` can be used to obtain all the setting values as an object where the object properties are setting names and property values are the setting values. + +An example value of this object is shown below: + +````js +{ + Abp.Localization.DefaultLanguage: "en", + Abp.Timing.TimeZone: "UTC", + ... +} +```` +