add ability to change assingee

This commit is contained in:
Robin Olsen
2026-02-25 13:20:30 +01:00
parent 6264f9dfc9
commit 44e894f025
12 changed files with 219 additions and 57 deletions

View File

@@ -39,6 +39,8 @@ func (s *Server) RegisterRoutes(assets embed.FS) http.Handler {
r.Get("/", handler.GetIssue)
r.Patch("/", handler.UpdateIssue)
r.Get("/edit", handler.EditIssueFormModal)
r.Get("/assignee", handler.AssigneeFormModal)
r.Patch("/assignee", handler.UpdateAssignee)
r.Delete("/", handler.DeleteIssue)
r.Route("/comments", func(r chi.Router) {