Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit 88877f30 authored by Theerapong Thawiwat's avatar Theerapong Thawiwat
Browse files

Edit JS

parent 01a30610
No related branches found
No related tags found
No related merge requests found
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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment