From e3be92b63e7b40c300c6bc9c1781868e8fddbad1 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Wed, 8 Feb 2023 07:45:01 +0800 Subject: [PATCH] Rename register return value from session_id to session_key #730 --- src/Controller/CustomerAppAPI/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/CustomerAppAPI/AuthController.php b/src/Controller/CustomerAppAPI/AuthController.php index bf541906..51fe4092 100644 --- a/src/Controller/CustomerAppAPI/AuthController.php +++ b/src/Controller/CustomerAppAPI/AuthController.php @@ -63,7 +63,7 @@ class AuthController extends ApiController // return data return new ApiResponse(true, '', [ - 'session_id' => $sess->getID(), + 'session_key' => $sess->getID(), ]); }