3
0
corteza/auth/settings/settings.go

22 lines
402 B
Go

package settings
type (
Settings struct {
LocalEnabled bool
SignupEnabled bool
EmailConfirmationRequired bool
PasswordResetEnabled bool
ExternalEnabled bool
Providers []Provider
}
Provider struct {
Handle string
Label string
IssuerUrl string
Key string
RedirectUrl string
Secret string
}
)