From bcc0e0df18a14b1cf4a5fbd7c8869725b07c99b6 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Mon, 23 May 2022 06:12:06 +0000 Subject: [PATCH] fix attribute name --- app/controllers/api/projects.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/projects.php b/app/controllers/api/projects.php index 740f194b62..cd34dade8e 100644 --- a/app/controllers/api/projects.php +++ b/app/controllers/api/projects.php @@ -105,7 +105,7 @@ App::post('/v1/projects') 'domains' => null, 'auths' => $auths, 'databaseSecrets' => [\uniqid() => \bin2hex(OpenSSL::randomPseudoBytes(128))], - 'jwtSecret' => \bin2hex(OpenSSL::randomPseudoBytes(128)), + 'jwtSecrets' => \bin2hex(OpenSSL::randomPseudoBytes(128)), 'search' => implode(' ', [$projectId, $name]), ])); /** @var array $collections */