Revert configurable DCR token expiration (#31278)

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2026-02-17 16:05:50 +01:00
parent 31de2c9b3a
commit 7dc3dfe5cb
8 changed files with 44 additions and 189 deletions
-7
View File
@@ -95,7 +95,6 @@ export interface Config {
/**
* The backstage token expiration.
* Defaults to 1 hour (3600s). Maximum allowed is 24 hours.
*/
backstageTokenExpiration?: HumanDuration | string;
@@ -150,12 +149,6 @@ export interface Config {
* dynamic client registration. Defaults to '[*]' which allows any redirect URI.
*/
allowedRedirectUriPatterns?: string[];
/**
* The expiration time for the client registration access tokens.
* Defaults to 1 hour (3600s). Maximum allowed is 24 hours.
*/
tokenExpiration?: HumanDuration | string;
};
/**