From dd4809f3c873650583b83cc1e2e6bdf7dbf3956b Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Wed, 21 Feb 2024 08:57:50 +0000 Subject: [PATCH] feat: vincent error message --- app/config/errors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/errors.php b/app/config/errors.php index 40c60790a..267ac383f 100644 --- a/app/config/errors.php +++ b/app/config/errors.php @@ -284,7 +284,7 @@ return [ ], Exception::USER_API_KEY_AND_SESSION_SET => [ 'name' => Exception::USER_API_KEY_AND_SESSION_SET, - 'description' => 'API key and a session used in the same request. For guest actions, use only API key. For user actions, use only a session.', + 'description' => 'API key and session used in the same request. Use either `setSession` or `setKey`. Learn about which authentication method to use in the SSR docs: https://appwrite.io/docs/products/auth/server-side-rendering', 'code' => 403, ],