12 lines
207 B
Go
12 lines
207 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package session
|
|
|
|
const (
|
|
KeyUID = "uid"
|
|
KeyUname = "uname"
|
|
|
|
KeyUserHasTwoFactorAuth = "userHasTwoFactorAuth"
|
|
)
|