rework from modal to page

This commit is contained in:
Matthias Hochmeister
2026-03-25 10:23:28 +01:00
parent 4ad260ce66
commit feb39d234f
14 changed files with 698 additions and 280 deletions

View File

@@ -80,6 +80,12 @@ router.get(
issueController.getComments.bind(issueController)
);
router.get(
'/:id/history',
authenticate,
issueController.getHistory.bind(issueController)
);
router.post(
'/:id/comments',
authenticate,