This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
package flags
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"goauthentik.io/api/v3"
|
|
)
|
|
|
|
const InvalidUserPK = -1
|
|
|
|
type UserFlags struct {
|
|
UserInfo *api.User
|
|
UserPk int32
|
|
CanSearch bool
|
|
Session *http.Cookie
|
|
}
|