Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/utils/cookies/helpers.go

21 lignes
343 B
Go

package cookies
import (
"github.com/NyaaPantsu/nyaa/config"
)
func getDomainName() string {
domain := config.Get().Cookies.DomainName
if config.Get().Environment == "DEVELOPMENT" {
domain = ""
}
return domain
}
func getMaxAge(rememberMe bool) int {
if rememberMe {
return 365 * 24 * 3600
}
return config.Get().Cookies.MaxAge
}