15 lines
244 B
Go
15 lines
244 B
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
"lmika.dev/lmika/hugo-crm/models"
|
||
|
)
|
||
|
|
||
|
type siteKeyType struct{}
|
||
|
|
||
|
var siteKey siteKeyType
|
||
|
|
||
|
func GetSite(c *fiber.Ctx) models.Site {
|
||
|
return c.UserContext().Value(siteKey).(models.Site)
|
||
|
}
|