2c8344faf9
They are in different folders and all loaded in controllers/router.go. This means that you only have to create a folder with a router.go file and import this folder in main router.go to add a handler.
20 lignes
414 o
Go
20 lignes
414 o
Go
package userController
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/NyaaPantsu/nyaa/utils/cookies"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// UserLogoutHandler : Controller to logout users
|
|
func UserLogoutHandler(c *gin.Context) {
|
|
logout := c.PostForm("logout")
|
|
if logout != "" {
|
|
cookies.Clear(c)
|
|
url := c.DefaultPostForm("redirectTo", "/")
|
|
c.Redirect(http.StatusSeeOther, url)
|
|
} else {
|
|
c.Status(http.StatusNotFound)
|
|
}
|
|
}
|