aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src
diff options
context:
space:
mode:
Diffstat (limited to 'services/app/src')
-rw-r--r--services/app/src/App.php2
-rw-r--r--services/app/src/Forms/LoginForm.php2
2 files changed, 1 insertions, 3 deletions
diff --git a/services/app/src/App.php b/services/app/src/App.php
index 7b31e74..9d6cc70 100644
--- a/services/app/src/App.php
+++ b/services/app/src/App.php
@@ -892,8 +892,6 @@ final class App
'label' => $ex->status->label(),
'show_loading_indicator' => $ex->status->showLoadingIndicator(),
],
- 'stdout' => $ex->stdout,
- 'stderr' => $ex->stderr,
], $testcaseExecutions),
])->withStatus(200);
}
diff --git a/services/app/src/Forms/LoginForm.php b/services/app/src/Forms/LoginForm.php
index 26f6ad1..4c69ad5 100644
--- a/services/app/src/Forms/LoginForm.php
+++ b/services/app/src/Forms/LoginForm.php
@@ -84,7 +84,7 @@ final class LoginForm extends FormBase
try {
$user_id = $this->userRepo->create(
$username,
- is_admin: true, // TODO
+ is_admin: false,
);
} catch (EntityValidationException $e) {
$this->state->setErrors($e->toFormErrors());