Files
PrivateCaptcha/pkg/session/common.go
2025-06-17 12:35:06 +03:00

17 lines
279 B
Go

package session
import "github.com/PrivateCaptcha/PrivateCaptcha/pkg/common"
const (
KeyLoginStep common.SessionKey = iota
KeyUserID
KeyUserEmail
KeyTwoFactorCode
KeyUserName
KeyPersistent
KeyNotificationID
KeyReturnURL
// Add new fields _above_
SESSION_KEYS_COUNT
)