ACS-8770: fix lint issue

This commit is contained in:
Anton Ramanovich
2025-06-23 07:55:13 +02:00
parent 3bd705b8b4
commit 2fbf916749
5 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ export const SHOULD_ADD_AUTH_TOKEN = new HttpContextToken<boolean>(() => false);
@Injectable()
export class AuthenticationInterceptor implements HttpInterceptor {
constructor(private authService: Authentication) {}
constructor(private readonly authService: Authentication) {}
intercept(
req: HttpRequest<any>,