added onlyVerified field to the authMethods response

This commit is contained in:
Gani Georgiev
2023-12-06 13:30:47 +02:00
parent 31317df21c
commit 64eefb44e8
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -97,9 +97,11 @@ func (api *recordAuthApi) authMethods(c echo.Context) error {
AuthProviders []providerInfo `json:"authProviders"`
UsernamePassword bool `json:"usernamePassword"`
EmailPassword bool `json:"emailPassword"`
OnlyVerified bool `json:"onlyVerified"`
}{
UsernamePassword: authOptions.AllowUsernameAuth,
EmailPassword: authOptions.AllowEmailAuth,
OnlyVerified: authOptions.OnlyVerified,
AuthProviders: []providerInfo{},
}