documented the enum
Dieser Commit ist enthalten in:
Ursprung
5bf5ac8bb2
Commit
7cdf43ef30
|
@ -1,7 +1,10 @@
|
||||||
package auth
|
package auth
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// AccountID is the ID of the session. Prefferably it should be an UUIDv4 to mitigate security errors.
|
||||||
AccountID string = "jti"
|
AccountID string = "jti"
|
||||||
|
// AccountAnon is to identify Sessions as Anonymous sessions.
|
||||||
AccountAnon string = "anon"
|
AccountAnon string = "anon"
|
||||||
|
// AccountUser is an attribute that identifies the user with an string that is unique for the user, for Example the username.
|
||||||
AccountUser string = "uid"
|
AccountUser string = "uid"
|
||||||
)
|
)
|
||||||
|
|
Laden…
In neuem Issue referenzieren