mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-28 01:05:20 +02:00
* fix #3631 * fix #21599 by the way, refactored the "profile avatar card" to simplify the code.
13 lines
228 B
Go
13 lines
228 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package session
|
|
|
|
const (
|
|
KeyUID = "uid"
|
|
|
|
KeyImpersonatorData = "impersonatorData"
|
|
|
|
KeyUserHasTwoFactorAuth = "userHasTwoFactorAuth"
|
|
)
|