2024-04-09 07:29:45 -07:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2024-04-13 11:51:31 -07:00
|
|
|
"templ-test/views/home"
|
2024-04-09 07:29:45 -07:00
|
|
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (h *Handlers) HomeHandler(c echo.Context) error {
|
2024-04-13 11:51:31 -07:00
|
|
|
return Render(c, http.StatusOK, home.Home())
|
2024-04-09 07:29:45 -07:00
|
|
|
}
|
|
|
|
|
2024-04-13 11:51:31 -07:00
|
|
|
func (h *Handlers) Settings(c echo.Context) error {
|
|
|
|
return Render(c, http.StatusOK, home.UserSettings())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Handlers) SettingsPost(c echo.Context) error {
|
|
|
|
// take in the updated values from he user and write the cookies... tbd
|
|
|
|
|
|
|
|
return Render(c, http.StatusOK, home.UserSettings())
|
|
|
|
}
|
|
|
|
|
|
|
|
//func (h *Handlers) ListHandler(c echo.Context) error {
|
|
|
|
// return Render(c, http.StatusOK, views.List())
|
|
|
|
//}
|