From 88877f308c0ce60b037415fa13e49e9d5a4646f9 Mon Sep 17 00:00:00 2001 From: Theerapong Thawiwat <artlive31@gmail.com> Date: Fri, 21 Mar 2025 14:44:57 +0700 Subject: [PATCH] Edit JS --- routes/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/profile.js b/routes/profile.js index 47d2bbe..665c33e 100644 --- a/routes/profile.js +++ b/routes/profile.js @@ -1,6 +1,6 @@ const express = require('express'); const router = express.Router(); -const profileController = require('../controllers/ProfileController'); +const profileController = require('../controllers/profileController'); const authMiddleware = require('../middleware/authMiddleware'); router.get('/', authMiddleware.ensureAuthenticated, profileController.getProfile); -- GitLab