From 25d05f9d890181a60ece90af89fdfd475e6a4139 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 15 Apr 2025 16:52:04 +0200 Subject: [PATCH] move the auth.backstageTokenExpiration key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .changeset/early-boxes-check.md | 5 +++++ plugins/auth-backend/config.d.ts | 10 ++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .changeset/early-boxes-check.md diff --git a/.changeset/early-boxes-check.md b/.changeset/early-boxes-check.md new file mode 100644 index 0000000000..0154582e6b --- /dev/null +++ b/.changeset/early-boxes-check.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-auth-backend': patch +--- + +Slight update to the config schema diff --git a/plugins/auth-backend/config.d.ts b/plugins/auth-backend/config.d.ts index d2725e99a5..0e01bf038c 100644 --- a/plugins/auth-backend/config.d.ts +++ b/plugins/auth-backend/config.d.ts @@ -140,11 +140,13 @@ export interface Config { callbackUrl?: string; }; }; - /** - * The backstage token expiration. - */ - backstageTokenExpiration?: HumanDuration | string; }; + + /** + * The backstage token expiration. + */ + backstageTokenExpiration?: HumanDuration | string; + /** * Additional app origins to allow for authenticating */