From e884a763deec40d4394f7a9921898ff68f753eda Mon Sep 17 00:00:00 2001 From: "christian.julian" Date: Sun, 15 Jun 2025 16:12:35 -0600 Subject: [PATCH] fix --- api_candidatos/src/OAuth/Middleware/AuthMiddleware.php | 2 +- api_candidatos/src/OAuth/Repositories/AccessTokenRepository.php | 2 +- .../src/OAuth/Repositories/RefreshTokenRepository.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api_candidatos/src/OAuth/Middleware/AuthMiddleware.php b/api_candidatos/src/OAuth/Middleware/AuthMiddleware.php index 06a3540..c9a3836 100644 --- a/api_candidatos/src/OAuth/Middleware/AuthMiddleware.php +++ b/api_candidatos/src/OAuth/Middleware/AuthMiddleware.php @@ -9,7 +9,7 @@ use Config\Database; class AuthMiddleware { public static function verifyToken() { - $config = require_once __DIR__ . '/../../config/oauth.php'; + $config = require_once __DIR__ . '/../../Config/oauth.php'; $conn = Database::connect(); diff --git a/api_candidatos/src/OAuth/Repositories/AccessTokenRepository.php b/api_candidatos/src/OAuth/Repositories/AccessTokenRepository.php index e2a6748..9027a1b 100644 --- a/api_candidatos/src/OAuth/Repositories/AccessTokenRepository.php +++ b/api_candidatos/src/OAuth/Repositories/AccessTokenRepository.php @@ -1,7 +1,7 @@