From 99bc95d454ad734a97fdbf3d4f002eadd369bd6c Mon Sep 17 00:00:00 2001 From: Gianni Carafa Date: Tue, 23 Jan 2024 16:50:51 +0100 Subject: [PATCH] fix cronjobs and volume forms --- client/src/components/apps/form.vue | 13 ++++++------- server/src/modules/auth.ts | 8 ++++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/client/src/components/apps/form.vue b/client/src/components/apps/form.vue index 6732a40d..6c0c836f 100644 --- a/client/src/components/apps/form.vue +++ b/client/src/components/apps/form.vue @@ -785,7 +785,7 @@ Volumes -
+
- + :items="['ReadWriteOnce', 'ReadWriteMany', 'ReadOnlyMany']" + label="Access Mode" + >
@@ -879,7 +878,7 @@ Cronjobs -
+
{ return o.login === process.env.GITHUB_CLIENT_ORG } ) @@ -144,8 +144,8 @@ export class Auth { done(null, user); } else { - console.log(profile.username+' is not in allowd organisation '+process.env.GITHUB_CLIENT_ORG) - done(null, false, { message: 'Not in allowd organisation'}) + console.log(profile.username+' is not in allowed organisation '+process.env.GITHUB_CLIENT_ORG) + done(null, false, { message: 'Not in allowed organisation'}) } }) );