fix(security): require auth on clan creation, remove debug console.log
POST /herowars/clans was accessible without authentication. console.log(req.profile) in profiles controller leaked user data to logs.
This commit is contained in:
@@ -25,7 +25,6 @@ module.exports.deleteFollowUser = asyncHandler(async (req, res, next) => {
|
||||
|
||||
module.exports.getProfile = asyncHandler(async (req, res, next) => {
|
||||
try {
|
||||
console.log(req.profile)
|
||||
/*const user = await UserService.getUserById(req.payload.id);
|
||||
if (!user) {
|
||||
return next(new ErrorResponse("Unauthorized", 401, "Authentication required."));
|
||||
|
||||
Reference in New Issue
Block a user