/*
* Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
*
* This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
* more information.
*/
package handlers
import (
"net/http"
"git.src.quest/~liljamo/emerwen-web/internal/components"
"git.src.quest/~liljamo/emerwen-web/internal/renderer"
"github.com/gin-gonic/gin"
)
// NoRoute returns a gin handler for undefined routes.
func NoRoute() gin.HandlerFunc {
return func(c *gin.Context) {
r := renderer.New(BaseContext(c), http.StatusNotFound, components.Error(http.StatusNotFound, "you lost the sheep!"))
c.Render(http.StatusNotFound, r)
}
}