Remove authentication Cookies from Backend

This commit is contained in:
2022-01-23 21:35:23 +00:00
parent 4f72751ed6
commit 3da2e0f2f8
2 changed files with 0 additions and 16 deletions

View File

@ -23,7 +23,6 @@ type Handler struct {
const (
expiration = 72
authCookie = "authentication"
)
// Serve starts the HTTP Server
@ -76,9 +75,6 @@ func (h *Handler) Serve() {
authenticated.Use(h.verifyLoginWithForbidden)
authenticated.GET("/dashboard", h.dashboard)
user := authenticated.Group("/user")
user.GET("/logout", logout)
budget := authenticated.Group("/budget")
budget.POST("/new", h.newBudget)