From 98041b7af2b4225e2fa74c0cd58a641b17ac51af Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Wed, 9 Nov 2022 23:32:57 +0100 Subject: [PATCH] docs: Explain $.auth.set expands the value rather than overriding --- packages/docs/pages/build-integrations/global-variable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/pages/build-integrations/global-variable.md b/packages/docs/pages/build-integrations/global-variable.md index 396a5c49..3137dc09 100644 --- a/packages/docs/pages/build-integrations/global-variable.md +++ b/packages/docs/pages/build-integrations/global-variable.md @@ -26,7 +26,7 @@ await $.auth.set({ }); ``` -It's used to set the authentication data, and you can use this method with multiple pairs. The data will be stored in the database and can be retrieved later by using `$.auth.data` property. We use this method when we store the credentials of the third-party service. Note that Automatisch encrypts the data before storing it in the database. +It's used to set the authentication data, and you can use this method with multiple pairs. The data will be stored in the database and can be retrieved later by using `$.auth.data` property. The data you set with this method will not override its current value but expands it. We use this method when we store the credentials of the third-party service. Note that Automatisch encrypts the data before storing it in the database. ## $.auth.data