From 3f6a513a5491f06f5ca67acbb8b55dea93e76bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Mart=C3=ADn?= Date: Wed, 17 Dec 2025 23:17:40 +0100 Subject: [PATCH] Fix: Update OidcValidationResult import path to use interfaces --- apps/api/src/app/auth/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/auth/auth.controller.ts b/apps/api/src/app/auth/auth.controller.ts index cb0bcf2ed..31c5586e3 100644 --- a/apps/api/src/app/auth/auth.controller.ts +++ b/apps/api/src/app/auth/auth.controller.ts @@ -29,7 +29,7 @@ import { Request, Response } from 'express'; import { getReasonPhrase, StatusCodes } from 'http-status-codes'; import { AuthService } from './auth.service'; -import { OidcValidationResult } from './oidc.strategy'; +import { OidcValidationResult } from './interfaces/interfaces'; @Controller('auth') export class AuthController {