Selamlar if else ile yazılmış kodu destructure ile yeniden nasıl yazabilirim acaba
const profilGuncelle = async function (req, res, next) {
const guncelBilgiler = {
ad: req.body.ad,
soyad:req.body.soyad
}
try {
if (req.file) {
guncelBilgiler.avatar = req.file.filename;
}
const sonuc = await User.findByIdAndUpdate(req.user.id, guncelBilgiler);
if (sonuc) {
console.log("update tamamlandı");
res.redirect('/yonetim/profil');
}
} catch (hata) {
console.log(hata);
}
}