diff --git a/backend/controllers/Account.ts b/backend/controllers/Account.ts index 50dc8b7..55c2767 100644 --- a/backend/controllers/Account.ts +++ b/backend/controllers/Account.ts @@ -156,19 +156,6 @@ class AccountController { * @param res The Express response object */ public static async banUser(req: express.Request, res: express.Response) { - // TODO: Ban/unban a user - /** - * VALIDATION - * * Check if the user is an admin - * * Validate the user ID - * - * PROCESS - * * Ban/unban the user - * - * RESPONSE - * * Send a success message - * * Send an error message if the user ID is invalid - */ const { userId, isBanned } = req.body; try {