-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🍁 [Backend] The DELETE teamMemebers API should also delete the respec…
…tive file stored in the disk Fixed (#930) * backend delete image fixed * Update deleteTeamMember.js
- Loading branch information
Showing
1 changed file
with
23 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
const teamMemberModel = require('../../models/TeamMember'); | ||
module.exports = async(req,res,next) => { | ||
try { | ||
const payload = res.locals.decode; | ||
const memberId = req.body.memberId; | ||
if (payload.isSuperAdmin === false) { | ||
return res.status(401).json({ error: 'You are not an admin' }); | ||
} | ||
const result = await teamMemberModel.findByIdAndDelete(memberId); | ||
if(!result) { | ||
return res.status(401).json({error:"Invalid id"}); | ||
} | ||
return res.json({message:"Deleted successfully"}); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
module.exports = async (req, res, next) => { | ||
try { | ||
const payload = res.locals.decode; | ||
const memberId = req.body.memberId; | ||
if (payload.isSuperAdmin === false) { | ||
return res.status(401).json({ error: 'You are not an admin' }); | ||
} | ||
catch(error) { | ||
return res.status(500).json({error:"Some internal server error"}); | ||
const result = await teamMemberModel.findByIdAndDelete(memberId); | ||
if (!result) { | ||
return res.status(401).json({ error: 'Invalid id' }); | ||
} | ||
|
||
} | ||
if (result?.image) { | ||
const fileName = path.basename(result.image); | ||
const imagePath = path.join(__dirname, '../../../uploads/teamMembersProfile/', fileName); | ||
fs.unlink(imagePath, (err) => console.log(err)); | ||
} | ||
return res.json({ message: 'Deleted successfully' }); | ||
} catch (error) { | ||
console.error(error); | ||
return res.status(500).json({ error: 'Some internal server error' }); | ||
} | ||
}; |