From 0dd617d4a752c9d916d0da7b1c42a7518baf10c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 21 Mar 2022 11:29:49 +0000 Subject: [PATCH 01/35] Change default to empty string --- app/executor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/executor.php b/app/executor.php index 1fa32599a..4ef174ab9 100644 --- a/app/executor.php +++ b/app/executor.php @@ -396,7 +396,7 @@ App::post('/v1/execution') ->desc('Create an execution') ->param('runtimeId', '', new Text(64), 'The runtimeID to execute') ->param('vars', [], new Assoc(), 'Environment variables required for the build') - ->param('data', '{}', new Text(8192), 'Data to be forwarded to the function, this is user specified.', true) + ->param('data', '', new Text(8192), 'Data to be forwarded to the function, this is user specified.', true) ->param('timeout', 15, new Range(1, (int) App::getEnv('_APP_FUNCTIONS_TIMEOUT', 900)), 'Function maximum execution time in seconds.') ->inject('activeRuntimes') ->inject('response') From 95d5f7a6592c150eed7df30d3fcb6e8385db1a66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 23 Mar 2022 08:23:27 +0000 Subject: [PATCH 02/35] Added veritifcation status modal --- app/views/console/users/user.phtml | 35 ++++++++++++++++++++++++++++++ composer.lock | 28 ++++++++++++------------ 2 files changed, 49 insertions(+), 14 deletions(-) diff --git a/app/views/console/users/user.phtml b/app/views/console/users/user.phtml index e769ef4bb..689ae9146 100644 --- a/app/views/console/users/user.phtml +++ b/app/views/console/users/user.phtml @@ -119,6 +119,40 @@ + +