summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-04-05 16:37:38 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-04-05 16:37:38 +0300
commit0a4bfe6ece1a33fbf6b0d972d0afd3a0231f81bc (patch)
treee0a7d68a9df040e26c2ba08643205b33f8d30c24
parent1d052c05fdc627b4d5efb306c1f3344c2c1bd8c9 (diff)
fix: properly define MainPage handler method
-rw-r--r--internal/handlers/main.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go
index edda1bf..f0225f6 100644
--- a/internal/handlers/main.go
+++ b/internal/handlers/main.go
@@ -151,6 +151,16 @@ func (h *Handlers) renderQuestion(w http.ResponseWriter, question *models.Questi
return
}
+}
+
+func (h *Handlers) MainPage(w http.ResponseWriter, r *http.Request) {
+ question, err := h.repo.DBGetQuestion("1")
+ if err != nil {
+ h.log.Error("failed to get question", "error", err)
+ abortWithError(w, "Question not found")
+ return
+ }
+
h.showNext = false
h.renderQuestion(w, question)
}