From da5252fd4efe7b8fec3eda5aee7519d2113889d3 Mon Sep 17 00:00:00 2001 From: Joakim Uddholm <298627+Tethik@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:28:36 +0100 Subject: [PATCH] feat: add some new default authentication options (#133) --- config/default.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/config/default.ts b/config/default.ts index 8665397a..d3fc4358 100644 --- a/config/default.ts +++ b/config/default.ts @@ -127,7 +127,18 @@ export const defaultConfig: GramConfiguration = { type: "select", defaultValue: [], label: "Authentication", - options: ["Basic Auth", "JWT", "OIDC", "None"], + options: [ + "Basic Auth", + "Password", + "JWT", + "OIDC", + "OAuth", + "Client Certificate", + "Cookie", + "Session", + "AWS Signature Version 4", + "None", + ], allowCustomValue: true, allowMultiple: true, optional: false,