mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-12 00:39:29 -06:00
17 lines
279 B
Go
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
|
|
)
|