feat: issue creation

This commit is contained in:
2025-02-22 18:01:45 +01:00
parent 5b148cb4bb
commit 2d83ca9d20
10 changed files with 258 additions and 40 deletions

View File

@ -23,7 +23,8 @@ func NewHandler(issueManager *service.IssueManager) *Handler {
}
h.mux.HandleFunc("GET /", h.getIssuePage)
h.mux.HandleFunc("POST /", h.handleIssueSummary)
h.mux.HandleFunc("PUT /", h.handleIssueSummaryForm)
h.mux.HandleFunc("POST /", h.handleIssueForm)
return h
}