Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Manueluz committed Apr 14, 2024
1 parent a8cd8f5 commit 3fb271c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { mockRequest, mockResponse, mockNext } = require('jest-mock-req-res');
const jwt = require('jsonwebtoken');
const authMiddleware = require('./authMiddleware'); // Replace with the actual path to your auth middleware module
const authMiddleware = require('./friendsAuthMiddleware'); // Replace with the actual path to your auth middleware module

const privateKey = "ChangeMePlease!!!!"

Expand Down
2 changes: 1 addition & 1 deletion friends_service/friends.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const fs = require("fs")
const YAML = require('yaml')

// My own libs
const authMiddleware = require('./auth/authMiddleware');
const authMiddleware = require('./auth/friendsAuthMiddleware');

const port = 8005;
const app = express();
Expand Down

0 comments on commit 3fb271c

Please sign in to comment.