public async Task <ActionResult> EndreLikesFAQ([FromBody] FAQDTO faqDTO) { if (ModelState.IsValid) { bool returOK = await _db.EndreLikesFAQ(faqDTO); if (!returOK) { _log.LogInformation("FAQ ble ikke endret"); return(NotFound("FAQ ble ikke endret")); } _log.LogInformation("FAQ endret"); return(Ok("FAQ endret")); } _log.LogInformation("Feil i inputvalidering på server"); return(BadRequest("Feil i inputvalidering på server")); }