From 28e94b195f490fd283f4c0fd571c7ffbda6436e7 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Wed, 4 Jun 2025 16:36:50 +0000 Subject: [PATCH] feat(preferences_ex): adjust note about sensitive flag with encryption (#13177) Signed-off-by: Andrey Borysenko --- .../exapp_development/tech_details/api/appconfig.rst | 2 +- .../exapp_development/tech_details/api/preferences.rst | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/developer_manual/exapp_development/tech_details/api/appconfig.rst b/developer_manual/exapp_development/tech_details/api/appconfig.rst index 6893800ed..079ffc83c 100644 --- a/developer_manual/exapp_development/tech_details/api/appconfig.rst +++ b/developer_manual/exapp_development/tech_details/api/appconfig.rst @@ -25,7 +25,7 @@ Request data { "configKey": "key", "configValue": "value" - "sensitive": "sensitive flag affecting the visibility of the value (0/1, default: 0)" + "sensitive": "store value encrypted in the database (0/1, default: 0)" } diff --git a/developer_manual/exapp_development/tech_details/api/preferences.rst b/developer_manual/exapp_development/tech_details/api/preferences.rst index 407ab0de0..54aca6d79 100644 --- a/developer_manual/exapp_development/tech_details/api/preferences.rst +++ b/developer_manual/exapp_development/tech_details/api/preferences.rst @@ -23,9 +23,11 @@ Request data { "configKey": "key", - "configValue": "value" + "configValue": "value", + "sensitive": "store value encrypted in the database (0/1, default: 0)" } + Response data *************