mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-04-30 17:38:11 +00:00
24 lines
607 B
Go
24 lines
607 B
Go
package model
|
|
|
|
const DefaultNamePrefix = "TINYAUTH_"
|
|
|
|
const APIServer = "https://api.tinyauth.app"
|
|
|
|
type Claims struct {
|
|
Sub string `json:"sub"`
|
|
Name string `json:"name"`
|
|
Email string `json:"email"`
|
|
PreferredUsername string `json:"preferred_username"`
|
|
Groups any `json:"groups"`
|
|
}
|
|
|
|
var OverrideProviders = map[string]string{
|
|
"google": "Google",
|
|
"github": "GitHub",
|
|
}
|
|
|
|
const SessionCookieName = "tinyauth-session"
|
|
const CSRFCookieName = "tinyauth-csrf"
|
|
const RedirectCookieName = "tinyauth-redirect"
|
|
const OAuthSessionCookieName = "tinyauth-oauth"
|