2022-10-20 16:59:33 +00:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"GoWeb/app"
|
|
|
|
"GoWeb/controllers"
|
2023-07-21 16:59:55 +00:00
|
|
|
"GoWeb/middleware"
|
2022-10-20 16:59:33 +00:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2022-11-04 20:12:57 +00:00
|
|
|
// PostRoutes defines all project post routes
|
2022-10-20 16:59:33 +00:00
|
|
|
func PostRoutes(app *app.App) {
|
2022-11-04 20:12:57 +00:00
|
|
|
// Post controller struct initialize
|
2022-10-20 16:59:33 +00:00
|
|
|
postController := controllers.PostController{
|
|
|
|
App: app,
|
|
|
|
}
|
|
|
|
|
2022-11-04 20:12:57 +00:00
|
|
|
// User authentication
|
2023-07-23 04:37:38 +00:00
|
|
|
http.HandleFunc("/register-handle", middleware.Csrf(postController.Register))
|
|
|
|
http.HandleFunc("/login-handle", middleware.Csrf(postController.Login))
|
2022-10-20 16:59:33 +00:00
|
|
|
}
|