From 1314dfd945986752b783640f7c3870e3e6d8bfaf Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Tue, 1 Jul 2025 16:48:58 +0200 Subject: [PATCH] chore: make private Signed-off-by: benjdlambert --- plugins/auth-backend/src/service/OidcService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/service/OidcService.ts b/plugins/auth-backend/src/service/OidcService.ts index 81249805be..7af4a1e8ed 100644 --- a/plugins/auth-backend/src/service/OidcService.ts +++ b/plugins/auth-backend/src/service/OidcService.ts @@ -21,7 +21,7 @@ import { AuthenticationError, InputError } from '@backstage/errors'; import { decodeJwt } from 'jose'; export class OidcService { - constructor( + private constructor( private readonly auth: AuthService, private readonly tokenIssuer: TokenIssuer, private readonly baseUrl: string,