Explorar el Código

Return less info to the user when verifying

Pitu hace 6 años
padre
commit
04fb2218cd
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. 8 1
      src/api/routes/verifyGET.js

+ 8 - 1
src/api/routes/verifyGET.js

@@ -6,9 +6,16 @@ class verifyGET extends Route {
 	}
 
 	run(req, res, user) {
+		const returnUser = {
+			id:	user.id,
+			username: user.username,
+			apiKey: user.apiKey,
+			isAdmin: user.isAdmin
+		};
+
 		return res.json({
 			message: 'Successfully verified token',
-			user
+			user: returnUser
 		});
 	}
 }