* fix: Resolves Slasherss1/ipwa#6

* fix: minor issues with keys

* fix: chrome android raises some issues which i couldn't find a fix for on google.

* fix: Added attendence clear button and notes.

* fix: bumped version number
This commit is contained in:
2025-05-13 19:30:18 +02:00
committed by GitHub
parent 5d1c0bc2ba
commit 8f0f1efb88
9 changed files with 46 additions and 19 deletions

View File

@@ -82,6 +82,11 @@ cleanRouter.post('/attendence/:room', async (req, res) => {
res.send({status: 200})
})
cleanRouter.delete('/attendence/:room', async (req, res) => {
attendence.clearRoom(req.params.room)
res.send({status: 200})
})
cleanRouter.get('/attendenceSummary', async (req, res) => {
res.send(attendence.summary())
})