Test for UnsignReport

This commit is contained in:
al8763be 2024-04-09 22:17:50 +02:00
parent 67723bfccc
commit 57e969a562
2 changed files with 7 additions and 3 deletions

View file

@ -36,6 +36,6 @@ func UnsignReport(c *fiber.Ctx) error {
return c.Status(500).SendString(err.Error())
}
log.Info("Project manager ID: ", projectManagerID, " signed report ID: ", reportId)
log.Info("Project manager ID: ", projectManagerID, " unsigned report ID: ", reportId)
return c.Status(200).SendString("Weekly report unsigned successfully")
}