mirror of
https://github.com/casdoor/casdoor.git
synced 2025-09-10 21:30:33 +08:00
Compare commits
11 Commits
v1.722.0
...
master_old
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4233a68b95 | ||
|
|
6f1f93725e | ||
|
|
7ae067e369 | ||
|
|
dde936e935 | ||
|
|
fb561a98c8 | ||
|
|
7cd8f030ee | ||
|
|
a3f8ded10c | ||
|
|
e3d135bc6e | ||
|
|
fc864b0de4 | ||
|
|
3211bcc777 | ||
|
|
9f4430ed04 |
@@ -30,4 +30,5 @@ radiusSecret = "secret"
|
|||||||
quota = {"organization": -1, "user": -1, "application": -1, "provider": -1}
|
quota = {"organization": -1, "user": -1, "application": -1, "provider": -1}
|
||||||
logConfig = {"filename": "logs/casdoor.log", "maxdays":99999, "perm":"0770"}
|
logConfig = {"filename": "logs/casdoor.log", "maxdays":99999, "perm":"0770"}
|
||||||
initDataFile = "./init_data.json"
|
initDataFile = "./init_data.json"
|
||||||
|
initDataNewOnly = false
|
||||||
frontendBaseDir = "../casdoor"
|
frontendBaseDir = "../casdoor"
|
||||||
@@ -116,6 +116,13 @@ func (c *ApiController) Signup() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
err = object.CheckEntryIp(clientIp, nil, application, organization, c.GetAcceptLanguage())
|
||||||
|
if err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
msg := object.CheckUserSignup(application, organization, &authForm, c.GetAcceptLanguage())
|
msg := object.CheckUserSignup(application, organization, &authForm, c.GetAcceptLanguage())
|
||||||
if msg != "" {
|
if msg != "" {
|
||||||
c.ResponseError(msg)
|
c.ResponseError(msg)
|
||||||
|
|||||||
@@ -110,6 +110,9 @@ func (c *ApiController) GetApplication() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
object.CheckEntryIp(clientIp, nil, application, nil, c.GetAcceptLanguage())
|
||||||
|
|
||||||
c.ResponseOk(object.GetMaskedApplication(application, userId))
|
c.ResponseOk(object.GetMaskedApplication(application, userId))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -229,6 +232,11 @@ func (c *ApiController) UpdateApplication() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = object.CheckIpWhitelist(application.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.Data["json"] = wrapActionResponse(object.UpdateApplication(id, &application))
|
c.Data["json"] = wrapActionResponse(object.UpdateApplication(id, &application))
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
}
|
}
|
||||||
@@ -259,6 +267,11 @@ func (c *ApiController) AddApplication() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = object.CheckIpWhitelist(application.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.Data["json"] = wrapActionResponse(object.AddApplication(&application))
|
c.Data["json"] = wrapActionResponse(object.AddApplication(&application))
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,13 @@ func tokenToResponse(token *object.Token) *Response {
|
|||||||
func (c *ApiController) HandleLoggedIn(application *object.Application, user *object.User, form *form.AuthForm) (resp *Response) {
|
func (c *ApiController) HandleLoggedIn(application *object.Application, user *object.User, form *form.AuthForm) (resp *Response) {
|
||||||
userId := user.GetId()
|
userId := user.GetId()
|
||||||
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
err := object.CheckEntryIp(clientIp, user, application, application.OrganizationObj, c.GetAcceptLanguage())
|
||||||
|
if err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
allowed, err := object.CheckLoginPermission(userId, application)
|
allowed, err := object.CheckLoginPermission(userId, application)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.ResponseError(err.Error(), nil)
|
c.ResponseError(err.Error(), nil)
|
||||||
@@ -256,6 +263,9 @@ func (c *ApiController) GetApplicationLogin() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
object.CheckEntryIp(clientIp, nil, application, nil, c.GetAcceptLanguage())
|
||||||
|
|
||||||
application = object.GetMaskedApplication(application, "")
|
application = object.GetMaskedApplication(application, "")
|
||||||
if msg != "" {
|
if msg != "" {
|
||||||
c.ResponseError(msg, application)
|
c.ResponseError(msg, application)
|
||||||
|
|||||||
@@ -119,6 +119,11 @@ func (c *ApiController) UpdateOrganization() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = object.CheckIpWhitelist(organization.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.Data["json"] = wrapActionResponse(object.UpdateOrganization(id, &organization))
|
c.Data["json"] = wrapActionResponse(object.UpdateOrganization(id, &organization))
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
}
|
}
|
||||||
@@ -149,6 +154,11 @@ func (c *ApiController) AddOrganization() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = object.CheckIpWhitelist(organization.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.Data["json"] = wrapActionResponse(object.AddOrganization(&organization))
|
c.Data["json"] = wrapActionResponse(object.AddOrganization(&organization))
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -182,6 +182,10 @@ func (c *ApiController) BuyProduct() {
|
|||||||
paidUserName := c.Input().Get("userName")
|
paidUserName := c.Input().Get("userName")
|
||||||
owner, _ := util.GetOwnerAndNameFromId(id)
|
owner, _ := util.GetOwnerAndNameFromId(id)
|
||||||
userId := util.GetId(owner, paidUserName)
|
userId := util.GetId(owner, paidUserName)
|
||||||
|
if paidUserName != "" && !c.IsAdmin() {
|
||||||
|
c.ResponseError(c.T("general:Only admin user can specify user"))
|
||||||
|
return
|
||||||
|
}
|
||||||
if paidUserName == "" {
|
if paidUserName == "" {
|
||||||
userId = c.GetSessionUsername()
|
userId = c.GetSessionUsername()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -370,6 +370,11 @@ func (c *ApiController) AddUser() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = object.CheckIpWhitelist(user.IpWhitelist, c.GetAcceptLanguage()); err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.Data["json"] = wrapActionResponse(object.AddUser(&user))
|
c.Data["json"] = wrapActionResponse(object.AddUser(&user))
|
||||||
c.ServeJSON()
|
c.ServeJSON()
|
||||||
}
|
}
|
||||||
@@ -535,6 +540,23 @@ func (c *ApiController) SetPassword() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
application, err := object.GetApplicationByUser(targetUser)
|
||||||
|
if err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if application == nil {
|
||||||
|
c.ResponseError(fmt.Sprintf(c.T("auth:the application for user %s is not found"), userId))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
err = object.CheckEntryIp(clientIp, targetUser, application, organization, c.GetAcceptLanguage())
|
||||||
|
if err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
targetUser.Password = newPassword
|
targetUser.Password = newPassword
|
||||||
targetUser.UpdateUserPassword(organization)
|
targetUser.UpdateUserPassword(organization)
|
||||||
targetUser.NeedUpdatePassword = false
|
targetUser.NeedUpdatePassword = false
|
||||||
|
|||||||
@@ -132,7 +132,8 @@ func (c *ApiController) SendVerificationCode() {
|
|||||||
c.ResponseError(err.Error())
|
c.ResponseError(err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
remoteAddr := util.GetIPFromRequest(c.Ctx.Request)
|
|
||||||
|
clientIp := util.GetClientIpFromRequest(c.Ctx.Request)
|
||||||
|
|
||||||
if msg := vform.CheckParameter(form.SendVerifyCode, c.GetAcceptLanguage()); msg != "" {
|
if msg := vform.CheckParameter(form.SendVerifyCode, c.GetAcceptLanguage()); msg != "" {
|
||||||
c.ResponseError(msg)
|
c.ResponseError(msg)
|
||||||
@@ -259,7 +260,7 @@ func (c *ApiController) SendVerificationCode() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
sendResp = object.SendVerificationCodeToEmail(organization, user, provider, remoteAddr, vform.Dest)
|
sendResp = object.SendVerificationCodeToEmail(organization, user, provider, clientIp, vform.Dest)
|
||||||
case object.VerifyTypePhone:
|
case object.VerifyTypePhone:
|
||||||
if vform.Method == LoginVerification || vform.Method == ForgetVerification {
|
if vform.Method == LoginVerification || vform.Method == ForgetVerification {
|
||||||
if user != nil && util.GetMaskedPhone(user.Phone) == vform.Dest {
|
if user != nil && util.GetMaskedPhone(user.Phone) == vform.Dest {
|
||||||
@@ -309,7 +310,7 @@ func (c *ApiController) SendVerificationCode() {
|
|||||||
c.ResponseError(fmt.Sprintf(c.T("verification:Phone number is invalid in your region %s"), vform.CountryCode))
|
c.ResponseError(fmt.Sprintf(c.T("verification:Phone number is invalid in your region %s"), vform.CountryCode))
|
||||||
return
|
return
|
||||||
} else {
|
} else {
|
||||||
sendResp = object.SendVerificationCodeToPhone(organization, user, provider, remoteAddr, phone)
|
sendResp = object.SendVerificationCodeToPhone(organization, user, provider, clientIp, phone)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -95,6 +95,7 @@ type Application struct {
|
|||||||
Tags []string `xorm:"mediumtext" json:"tags"`
|
Tags []string `xorm:"mediumtext" json:"tags"`
|
||||||
SamlAttributes []*SamlItem `xorm:"varchar(1000)" json:"samlAttributes"`
|
SamlAttributes []*SamlItem `xorm:"varchar(1000)" json:"samlAttributes"`
|
||||||
IsShared bool `json:"isShared"`
|
IsShared bool `json:"isShared"`
|
||||||
|
IpRestriction string `json:"ipRestriction"`
|
||||||
|
|
||||||
ClientId string `xorm:"varchar(100)" json:"clientId"`
|
ClientId string `xorm:"varchar(100)" json:"clientId"`
|
||||||
ClientSecret string `xorm:"varchar(100)" json:"clientSecret"`
|
ClientSecret string `xorm:"varchar(100)" json:"clientSecret"`
|
||||||
@@ -108,6 +109,7 @@ type Application struct {
|
|||||||
SigninUrl string `xorm:"varchar(200)" json:"signinUrl"`
|
SigninUrl string `xorm:"varchar(200)" json:"signinUrl"`
|
||||||
ForgetUrl string `xorm:"varchar(200)" json:"forgetUrl"`
|
ForgetUrl string `xorm:"varchar(200)" json:"forgetUrl"`
|
||||||
AffiliationUrl string `xorm:"varchar(100)" json:"affiliationUrl"`
|
AffiliationUrl string `xorm:"varchar(100)" json:"affiliationUrl"`
|
||||||
|
IpWhitelist string `xorm:"varchar(200)" json:"ipWhitelist"`
|
||||||
TermsOfUse string `xorm:"varchar(100)" json:"termsOfUse"`
|
TermsOfUse string `xorm:"varchar(100)" json:"termsOfUse"`
|
||||||
SignupHtml string `xorm:"mediumtext" json:"signupHtml"`
|
SignupHtml string `xorm:"mediumtext" json:"signupHtml"`
|
||||||
SigninHtml string `xorm:"mediumtext" json:"signinHtml"`
|
SigninHtml string `xorm:"mediumtext" json:"signinHtml"`
|
||||||
|
|||||||
@@ -539,6 +539,11 @@ func CheckUpdateUser(oldUser, user *User, lang string) string {
|
|||||||
return i18n.Translate(lang, "check:Phone already exists")
|
return i18n.Translate(lang, "check:Phone already exists")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if oldUser.IpWhitelist != user.IpWhitelist {
|
||||||
|
if err := CheckIpWhitelist(user.IpWhitelist, lang); err != nil {
|
||||||
|
return err.Error()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|||||||
100
object/check_ip.go
Normal file
100
object/check_ip.go
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
// Copyright 2024 The Casdoor Authors. All Rights Reserved.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package object
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/casdoor/casdoor/i18n"
|
||||||
|
)
|
||||||
|
|
||||||
|
func CheckEntryIp(clientIp string, user *User, application *Application, organization *Organization, lang string) error {
|
||||||
|
entryIp := net.ParseIP(clientIp)
|
||||||
|
if entryIp == nil {
|
||||||
|
return fmt.Errorf(i18n.Translate(lang, "check:Failed to parse client IP: %s"), clientIp)
|
||||||
|
} else if entryIp.IsLoopback() {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
if user != nil {
|
||||||
|
err = isEntryIpAllowd(user.IpWhitelist, entryIp, lang)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf(err.Error() + user.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if application != nil {
|
||||||
|
err = isEntryIpAllowd(application.IpWhitelist, entryIp, lang)
|
||||||
|
if err != nil {
|
||||||
|
application.IpRestriction = err.Error() + application.Name
|
||||||
|
return fmt.Errorf(err.Error() + application.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
if organization == nil && application.OrganizationObj != nil {
|
||||||
|
organization = application.OrganizationObj
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if organization != nil {
|
||||||
|
err = isEntryIpAllowd(organization.IpWhitelist, entryIp, lang)
|
||||||
|
if err != nil {
|
||||||
|
organization.IpRestriction = err.Error() + organization.Name
|
||||||
|
return fmt.Errorf(err.Error() + organization.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func isEntryIpAllowd(ipWhitelistStr string, entryIp net.IP, lang string) error {
|
||||||
|
if ipWhitelistStr == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
ipWhitelist := strings.Split(ipWhitelistStr, ",")
|
||||||
|
for _, ip := range ipWhitelist {
|
||||||
|
_, ipNet, err := net.ParseCIDR(ip)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if ipNet == nil {
|
||||||
|
return fmt.Errorf(i18n.Translate(lang, "check:CIDR for IP: %s should not be empty"), entryIp.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
if ipNet.Contains(entryIp) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf(i18n.Translate(lang, "check:Your IP address: %s has been banned according to the configuration of: "), entryIp.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
func CheckIpWhitelist(ipWhitelistStr string, lang string) error {
|
||||||
|
if ipWhitelistStr == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
ipWhiteList := strings.Split(ipWhitelistStr, ",")
|
||||||
|
for _, ip := range ipWhiteList {
|
||||||
|
if _, _, err := net.ParseCIDR(ip); err != nil {
|
||||||
|
return fmt.Errorf(i18n.Translate(lang, "check:%s does not meet the CIDR format requirements: %s"), ip, err.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
@@ -48,12 +48,16 @@ type InitData struct {
|
|||||||
Transactions []*Transaction `json:"transactions"`
|
Transactions []*Transaction `json:"transactions"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var initDataNewOnly bool
|
||||||
|
|
||||||
func InitFromFile() {
|
func InitFromFile() {
|
||||||
initDataFile := conf.GetConfigString("initDataFile")
|
initDataFile := conf.GetConfigString("initDataFile")
|
||||||
if initDataFile == "" {
|
if initDataFile == "" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initDataNewOnly = conf.GetConfigBool("initDataNewOnly")
|
||||||
|
|
||||||
initData, err := readInitDataFromFile(initDataFile)
|
initData, err := readInitDataFromFile(initDataFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -269,6 +273,9 @@ func initDefinedOrganization(organization *Organization) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deleteOrganization(organization)
|
affected, err := deleteOrganization(organization)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -295,6 +302,9 @@ func initDefinedApplication(application *Application) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deleteApplication(application)
|
affected, err := deleteApplication(application)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -316,6 +326,9 @@ func initDefinedUser(user *User) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deleteUser(user)
|
affected, err := deleteUser(user)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -342,6 +355,9 @@ func initDefinedCert(cert *Cert) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteCert(cert)
|
affected, err := DeleteCert(cert)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -364,6 +380,9 @@ func initDefinedLdap(ldap *Ldap) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteLdap(ldap)
|
affected, err := DeleteLdap(ldap)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -385,6 +404,9 @@ func initDefinedProvider(provider *Provider) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteProvider(provider)
|
affected, err := DeleteProvider(provider)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -406,6 +428,9 @@ func initDefinedModel(model *Model) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteModel(model)
|
affected, err := DeleteModel(model)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -428,6 +453,9 @@ func initDefinedPermission(permission *Permission) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deletePermission(permission)
|
affected, err := deletePermission(permission)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -450,6 +478,9 @@ func initDefinedPayment(payment *Payment) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeletePayment(payment)
|
affected, err := DeletePayment(payment)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -472,6 +503,9 @@ func initDefinedProduct(product *Product) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteProduct(product)
|
affected, err := DeleteProduct(product)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -494,6 +528,9 @@ func initDefinedResource(resource *Resource) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteResource(resource)
|
affected, err := DeleteResource(resource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -516,6 +553,9 @@ func initDefinedRole(role *Role) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deleteRole(role)
|
affected, err := deleteRole(role)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -538,6 +578,9 @@ func initDefinedSyncer(syncer *Syncer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteSyncer(syncer)
|
affected, err := DeleteSyncer(syncer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -560,6 +603,9 @@ func initDefinedToken(token *Token) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteToken(token)
|
affected, err := DeleteToken(token)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -582,6 +628,9 @@ func initDefinedWebhook(webhook *Webhook) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteWebhook(webhook)
|
affected, err := DeleteWebhook(webhook)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -603,6 +652,9 @@ func initDefinedGroup(group *Group) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := deleteGroup(group)
|
affected, err := deleteGroup(group)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -624,6 +676,9 @@ func initDefinedAdapter(adapter *Adapter) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteAdapter(adapter)
|
affected, err := DeleteAdapter(adapter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -645,6 +700,9 @@ func initDefinedEnforcer(enforcer *Enforcer) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteEnforcer(enforcer)
|
affected, err := DeleteEnforcer(enforcer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -666,6 +724,9 @@ func initDefinedPlan(plan *Plan) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeletePlan(plan)
|
affected, err := DeletePlan(plan)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -687,6 +748,9 @@ func initDefinedPricing(pricing *Pricing) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeletePricing(pricing)
|
affected, err := DeletePricing(pricing)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -708,6 +772,9 @@ func initDefinedInvitation(invitation *Invitation) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteInvitation(invitation)
|
affected, err := DeleteInvitation(invitation)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -743,6 +810,9 @@ func initDefinedSubscription(subscription *Subscription) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteSubscription(subscription)
|
affected, err := DeleteSubscription(subscription)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@@ -764,6 +834,9 @@ func initDefinedTransaction(transaction *Transaction) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if existed != nil {
|
if existed != nil {
|
||||||
|
if initDataNewOnly {
|
||||||
|
return
|
||||||
|
}
|
||||||
affected, err := DeleteTransaction(transaction)
|
affected, err := DeleteTransaction(transaction)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
|
|||||||
@@ -71,11 +71,13 @@ type Organization struct {
|
|||||||
MasterPassword string `xorm:"varchar(100)" json:"masterPassword"`
|
MasterPassword string `xorm:"varchar(100)" json:"masterPassword"`
|
||||||
DefaultPassword string `xorm:"varchar(100)" json:"defaultPassword"`
|
DefaultPassword string `xorm:"varchar(100)" json:"defaultPassword"`
|
||||||
MasterVerificationCode string `xorm:"varchar(100)" json:"masterVerificationCode"`
|
MasterVerificationCode string `xorm:"varchar(100)" json:"masterVerificationCode"`
|
||||||
|
IpWhitelist string `xorm:"varchar(200)" json:"ipWhitelist"`
|
||||||
InitScore int `json:"initScore"`
|
InitScore int `json:"initScore"`
|
||||||
EnableSoftDeletion bool `json:"enableSoftDeletion"`
|
EnableSoftDeletion bool `json:"enableSoftDeletion"`
|
||||||
IsProfilePublic bool `json:"isProfilePublic"`
|
IsProfilePublic bool `json:"isProfilePublic"`
|
||||||
UseEmailAsUsername bool `json:"useEmailAsUsername"`
|
UseEmailAsUsername bool `json:"useEmailAsUsername"`
|
||||||
EnableTour bool `json:"enableTour"`
|
EnableTour bool `json:"enableTour"`
|
||||||
|
IpRestriction string `json:"ipRestriction"`
|
||||||
|
|
||||||
MfaItems []*MfaItem `xorm:"varchar(300)" json:"mfaItems"`
|
MfaItems []*MfaItem `xorm:"varchar(300)" json:"mfaItems"`
|
||||||
AccountItems []*AccountItem `xorm:"varchar(5000)" json:"accountItems"`
|
AccountItems []*AccountItem `xorm:"varchar(5000)" json:"accountItems"`
|
||||||
|
|||||||
@@ -364,7 +364,7 @@ func GetAllActions(userId string) ([]string, error) {
|
|||||||
|
|
||||||
res := []string{}
|
res := []string{}
|
||||||
for _, enforcer := range enforcers {
|
for _, enforcer := range enforcers {
|
||||||
items := enforcer.GetAllObjects()
|
items := enforcer.GetAllActions()
|
||||||
res = append(res, items...)
|
res = append(res, items...)
|
||||||
}
|
}
|
||||||
return res, nil
|
return res, nil
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ func maskPassword(recordString string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewRecord(ctx *context.Context) (*casvisorsdk.Record, error) {
|
func NewRecord(ctx *context.Context) (*casvisorsdk.Record, error) {
|
||||||
ip := strings.Replace(util.GetIPFromRequest(ctx.Request), ": ", "", -1)
|
clientIp := strings.Replace(util.GetClientIpFromRequest(ctx.Request), ": ", "", -1)
|
||||||
action := strings.Replace(ctx.Request.URL.Path, "/api/", "", -1)
|
action := strings.Replace(ctx.Request.URL.Path, "/api/", "", -1)
|
||||||
requestUri := util.FilterQuery(ctx.Request.RequestURI, []string{"accessToken"})
|
requestUri := util.FilterQuery(ctx.Request.RequestURI, []string{"accessToken"})
|
||||||
if len(requestUri) > 1000 {
|
if len(requestUri) > 1000 {
|
||||||
@@ -83,7 +83,7 @@ func NewRecord(ctx *context.Context) (*casvisorsdk.Record, error) {
|
|||||||
record := casvisorsdk.Record{
|
record := casvisorsdk.Record{
|
||||||
Name: util.GenerateId(),
|
Name: util.GenerateId(),
|
||||||
CreatedTime: util.GetCurrentTime(),
|
CreatedTime: util.GetCurrentTime(),
|
||||||
ClientIp: ip,
|
ClientIp: clientIp,
|
||||||
User: "",
|
User: "",
|
||||||
Method: ctx.Request.Method,
|
Method: ctx.Request.Method,
|
||||||
RequestUri: requestUri,
|
RequestUri: requestUri,
|
||||||
|
|||||||
@@ -332,6 +332,9 @@ func RefreshToken(grantType string, refreshToken string, scope string, clientId
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if user == nil {
|
||||||
|
return "", fmt.Errorf("The user: %s doesn't exist", util.GetId(application.Organization, token.User))
|
||||||
|
}
|
||||||
|
|
||||||
if user.IsForbidden {
|
if user.IsForbidden {
|
||||||
return &TokenError{
|
return &TokenError{
|
||||||
|
|||||||
@@ -206,6 +206,7 @@ type User struct {
|
|||||||
ManagedAccounts []ManagedAccount `xorm:"managedAccounts blob" json:"managedAccounts"`
|
ManagedAccounts []ManagedAccount `xorm:"managedAccounts blob" json:"managedAccounts"`
|
||||||
MfaAccounts []MfaAccount `xorm:"mfaAccounts blob" json:"mfaAccounts"`
|
MfaAccounts []MfaAccount `xorm:"mfaAccounts blob" json:"mfaAccounts"`
|
||||||
NeedUpdatePassword bool `json:"needUpdatePassword"`
|
NeedUpdatePassword bool `json:"needUpdatePassword"`
|
||||||
|
IpWhitelist string `xorm:"varchar(200)" json:"ipWhitelist"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Userinfo struct {
|
type Userinfo struct {
|
||||||
@@ -696,7 +697,7 @@ func UpdateUser(id string, user *User, columns []string, isAdmin bool) (bool, er
|
|||||||
"eveonline", "fitbit", "gitea", "heroku", "influxcloud", "instagram", "intercom", "kakao", "lastfm", "mailru", "meetup",
|
"eveonline", "fitbit", "gitea", "heroku", "influxcloud", "instagram", "intercom", "kakao", "lastfm", "mailru", "meetup",
|
||||||
"microsoftonline", "naver", "nextcloud", "onedrive", "oura", "patreon", "paypal", "salesforce", "shopify", "soundcloud",
|
"microsoftonline", "naver", "nextcloud", "onedrive", "oura", "patreon", "paypal", "salesforce", "shopify", "soundcloud",
|
||||||
"spotify", "strava", "stripe", "type", "tiktok", "tumblr", "twitch", "twitter", "typetalk", "uber", "vk", "wepay", "xero", "yahoo",
|
"spotify", "strava", "stripe", "type", "tiktok", "tumblr", "twitch", "twitter", "typetalk", "uber", "vk", "wepay", "xero", "yahoo",
|
||||||
"yammer", "yandex", "zoom", "custom", "need_update_password",
|
"yammer", "yandex", "zoom", "custom", "need_update_password", "ip_whitelist",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if isAdmin {
|
if isAdmin {
|
||||||
|
|||||||
@@ -557,6 +557,14 @@ func CheckPermissionForUpdateUser(oldUser, newUser *User, isAdmin bool, lang str
|
|||||||
itemsChanged = append(itemsChanged, item)
|
itemsChanged = append(itemsChanged, item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if oldUser.IpWhitelist != newUser.IpWhitelist {
|
||||||
|
item := GetAccountItemByName("IP whitelist", organization)
|
||||||
|
if item == nil {
|
||||||
|
newUser.IpWhitelist = oldUser.IpWhitelist
|
||||||
|
} else {
|
||||||
|
itemsChanged = append(itemsChanged, item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if oldUser.Balance != newUser.Balance {
|
if oldUser.Balance != newUser.Balance {
|
||||||
item := GetAccountItemByName("Balance", organization)
|
item := GetAccountItemByName("Balance", organization)
|
||||||
|
|||||||
48
util/log.go
48
util/log.go
@@ -23,50 +23,50 @@ import (
|
|||||||
"github.com/beego/beego/logs"
|
"github.com/beego/beego/logs"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetIPInfo(clientIP string) string {
|
func getIpInfo(clientIp string) string {
|
||||||
if clientIP == "" {
|
if clientIp == "" {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
ips := strings.Split(clientIP, ",")
|
ips := strings.Split(clientIp, ",")
|
||||||
res := ""
|
res := strings.TrimSpace(ips[0])
|
||||||
for i := range ips {
|
//res := ""
|
||||||
ip := strings.TrimSpace(ips[i])
|
//for i := range ips {
|
||||||
// desc := GetDescFromIP(ip)
|
// ip := strings.TrimSpace(ips[i])
|
||||||
ipstr := fmt.Sprintf("%s: %s", ip, "")
|
// ipstr := fmt.Sprintf("%s: %s", ip, "")
|
||||||
if i != len(ips)-1 {
|
// if i != len(ips)-1 {
|
||||||
res += ipstr + " -> "
|
// res += ipstr + " -> "
|
||||||
} else {
|
// } else {
|
||||||
res += ipstr
|
// res += ipstr
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetIPFromRequest(req *http.Request) string {
|
func GetClientIpFromRequest(req *http.Request) string {
|
||||||
clientIP := req.Header.Get("x-forwarded-for")
|
clientIp := req.Header.Get("x-forwarded-for")
|
||||||
if clientIP == "" {
|
if clientIp == "" {
|
||||||
ipPort := strings.Split(req.RemoteAddr, ":")
|
ipPort := strings.Split(req.RemoteAddr, ":")
|
||||||
if len(ipPort) >= 1 && len(ipPort) <= 2 {
|
if len(ipPort) >= 1 && len(ipPort) <= 2 {
|
||||||
clientIP = ipPort[0]
|
clientIp = ipPort[0]
|
||||||
} else if len(ipPort) > 2 {
|
} else if len(ipPort) > 2 {
|
||||||
idx := strings.LastIndex(req.RemoteAddr, ":")
|
idx := strings.LastIndex(req.RemoteAddr, ":")
|
||||||
clientIP = req.RemoteAddr[0:idx]
|
clientIp = req.RemoteAddr[0:idx]
|
||||||
clientIP = strings.TrimLeft(clientIP, "[")
|
clientIp = strings.TrimLeft(clientIp, "[")
|
||||||
clientIP = strings.TrimRight(clientIP, "]")
|
clientIp = strings.TrimRight(clientIp, "]")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return GetIPInfo(clientIP)
|
return getIpInfo(clientIp)
|
||||||
}
|
}
|
||||||
|
|
||||||
func LogInfo(ctx *context.Context, f string, v ...interface{}) {
|
func LogInfo(ctx *context.Context, f string, v ...interface{}) {
|
||||||
ipString := fmt.Sprintf("(%s) ", GetIPFromRequest(ctx.Request))
|
ipString := fmt.Sprintf("(%s) ", GetClientIpFromRequest(ctx.Request))
|
||||||
logs.Info(ipString+f, v...)
|
logs.Info(ipString+f, v...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func LogWarning(ctx *context.Context, f string, v ...interface{}) {
|
func LogWarning(ctx *context.Context, f string, v ...interface{}) {
|
||||||
ipString := fmt.Sprintf("(%s) ", GetIPFromRequest(ctx.Request))
|
ipString := fmt.Sprintf("(%s) ", GetClientIpFromRequest(ctx.Request))
|
||||||
logs.Warning(ipString+f, v...)
|
logs.Warning(ipString+f, v...)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,6 +52,12 @@ const template = `<style>
|
|||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.20);
|
box-shadow: 0 0 30px 20px rgba(0, 0, 0, 0.20);
|
||||||
}
|
}
|
||||||
|
.login-panel-dark {
|
||||||
|
padding: 40px 70px 0 70px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: #333333;
|
||||||
|
box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.20);
|
||||||
|
}
|
||||||
</style>`;
|
</style>`;
|
||||||
|
|
||||||
const previewGrid = Setting.isMobile() ? 22 : 11;
|
const previewGrid = Setting.isMobile() ? 22 : 11;
|
||||||
@@ -592,6 +598,16 @@ class ApplicationEditPage extends React.Component {
|
|||||||
}} />
|
}} />
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
{Setting.getLabel(i18next.t("general:IP whitelist"), i18next.t("general:IP whitelist - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={22} >
|
||||||
|
<Input placeholder = {this.state.application.organizationObj?.ipWhitelist} value={this.state.application.ipWhiteList} onChange={e => {
|
||||||
|
this.updateApplicationField("ipWhitelist", e.target.value);
|
||||||
|
}} />
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
<Row style={{marginTop: "20px"}} >
|
<Row style={{marginTop: "20px"}} >
|
||||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
{Setting.getLabel(i18next.t("signup:Terms of Use"), i18next.t("signup:Terms of Use - Tooltip"))} :
|
{Setting.getLabel(i18next.t("signup:Terms of Use"), i18next.t("signup:Terms of Use - Tooltip"))} :
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ import PaymentResultPage from "./PaymentResultPage";
|
|||||||
import QrCodePage from "./QrCodePage";
|
import QrCodePage from "./QrCodePage";
|
||||||
import CaptchaPage from "./CaptchaPage";
|
import CaptchaPage from "./CaptchaPage";
|
||||||
import CustomHead from "./basic/CustomHead";
|
import CustomHead from "./basic/CustomHead";
|
||||||
|
import * as Util from "./auth/Util";
|
||||||
|
|
||||||
class EntryPage extends React.Component {
|
class EntryPage extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@@ -94,6 +95,14 @@ class EntryPage extends React.Component {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (this.state.application?.ipRestriction) {
|
||||||
|
return Util.renderMessageLarge(this, this.state.application.ipRestriction);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.state.application?.organizationObj?.ipRestriction) {
|
||||||
|
return Util.renderMessageLarge(this, this.state.application.organizationObj.ipRestriction);
|
||||||
|
}
|
||||||
|
|
||||||
const isDarkMode = this.props.themeAlgorithm.includes("dark");
|
const isDarkMode = this.props.themeAlgorithm.includes("dark");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -452,6 +452,16 @@ class OrganizationEditPage extends React.Component {
|
|||||||
}} />
|
}} />
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
{Setting.getLabel(i18next.t("general:IP whitelist"), i18next.t("general:IP whitelist - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={22} >
|
||||||
|
<Input value={this.state.organization.ipWhitelist} onChange={e => {
|
||||||
|
this.updateOrganizationField("ipWhitelist", e.target.value);
|
||||||
|
}} />
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
<Row style={{marginTop: "20px"}} >
|
<Row style={{marginTop: "20px"}} >
|
||||||
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
|
||||||
{Setting.getLabel(i18next.t("organization:Init score"), i18next.t("organization:Init score - Tooltip"))} :
|
{Setting.getLabel(i18next.t("organization:Init score"), i18next.t("organization:Init score - Tooltip"))} :
|
||||||
|
|||||||
@@ -1557,3 +1557,7 @@ export function getCurrencyText(product) {
|
|||||||
return "(Unknown currency)";
|
return "(Unknown currency)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function isDarkTheme(themeAlgorithm) {
|
||||||
|
return themeAlgorithm && themeAlgorithm.includes("dark");
|
||||||
|
}
|
||||||
|
|||||||
@@ -1070,6 +1070,19 @@ class UserEditPage extends React.Component {
|
|||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
);
|
);
|
||||||
|
} else if (accountItem.name === "IP whitelist") {
|
||||||
|
return (
|
||||||
|
<Row style={{marginTop: "20px"}} >
|
||||||
|
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
|
||||||
|
{Setting.getLabel(i18next.t("general:IP whitelist"), i18next.t("general:IP whitelist - Tooltip"))} :
|
||||||
|
</Col>
|
||||||
|
<Col span={22}>
|
||||||
|
<Input value={this.state.user.ipWhitelist} onChange={e => {
|
||||||
|
this.updateUserField("ipWhitelist", e.target.value);
|
||||||
|
}} />
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,6 @@ class LoginPage extends React.Component {
|
|||||||
username: null,
|
username: null,
|
||||||
validEmailOrPhone: false,
|
validEmailOrPhone: false,
|
||||||
validEmail: false,
|
validEmail: false,
|
||||||
enableCaptchaModal: CaptchaRule.Never,
|
|
||||||
openCaptchaModal: false,
|
openCaptchaModal: false,
|
||||||
openFaceRecognitionModal: false,
|
openFaceRecognitionModal: false,
|
||||||
verifyCaptcha: undefined,
|
verifyCaptcha: undefined,
|
||||||
@@ -93,17 +92,6 @@ class LoginPage extends React.Component {
|
|||||||
}
|
}
|
||||||
if (prevProps.application !== this.props.application) {
|
if (prevProps.application !== this.props.application) {
|
||||||
this.setState({loginMethod: this.getDefaultLoginMethod(this.props.application)});
|
this.setState({loginMethod: this.getDefaultLoginMethod(this.props.application)});
|
||||||
|
|
||||||
const captchaProviderItems = this.getCaptchaProviderItems(this.props.application);
|
|
||||||
if (captchaProviderItems) {
|
|
||||||
if (captchaProviderItems.some(providerItem => providerItem.rule === "Always")) {
|
|
||||||
this.setState({enableCaptchaModal: CaptchaRule.Always});
|
|
||||||
} else if (captchaProviderItems.some(providerItem => providerItem.rule === "Dynamic")) {
|
|
||||||
this.setState({enableCaptchaModal: CaptchaRule.Dynamic});
|
|
||||||
} else {
|
|
||||||
this.setState({enableCaptchaModal: CaptchaRule.Never});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (prevProps.account !== this.props.account && this.props.account !== undefined) {
|
if (prevProps.account !== this.props.account && this.props.account !== undefined) {
|
||||||
@@ -133,6 +121,19 @@ class LoginPage extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getCaptchaRule(application) {
|
||||||
|
const captchaProviderItems = this.getCaptchaProviderItems(application);
|
||||||
|
if (captchaProviderItems) {
|
||||||
|
if (captchaProviderItems.some(providerItem => providerItem.rule === "Always")) {
|
||||||
|
return CaptchaRule.Always;
|
||||||
|
} else if (captchaProviderItems.some(providerItem => providerItem.rule === "Dynamic")) {
|
||||||
|
return CaptchaRule.Dynamic;
|
||||||
|
} else {
|
||||||
|
return CaptchaRule.Never;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
checkCaptchaStatus(values) {
|
checkCaptchaStatus(values) {
|
||||||
AuthBackend.getCaptchaStatus(values)
|
AuthBackend.getCaptchaStatus(values)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
@@ -388,13 +389,14 @@ class LoginPage extends React.Component {
|
|||||||
} else {
|
} else {
|
||||||
values["password"] = passwordCipher;
|
values["password"] = passwordCipher;
|
||||||
}
|
}
|
||||||
if (this.state.enableCaptchaModal === CaptchaRule.Always) {
|
const captchaRule = this.getCaptchaRule(this.getApplicationObj());
|
||||||
|
if (captchaRule === CaptchaRule.Always) {
|
||||||
this.setState({
|
this.setState({
|
||||||
openCaptchaModal: true,
|
openCaptchaModal: true,
|
||||||
values: values,
|
values: values,
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
} else if (this.state.enableCaptchaModal === CaptchaRule.Dynamic) {
|
} else if (captchaRule === CaptchaRule.Dynamic) {
|
||||||
this.checkCaptchaStatus(values);
|
this.checkCaptchaStatus(values);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -911,7 +913,7 @@ class LoginPage extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
renderCaptchaModal(application) {
|
renderCaptchaModal(application) {
|
||||||
if (this.state.enableCaptchaModal === CaptchaRule.Never) {
|
if (this.getCaptchaRule(this.getApplicationObj()) === CaptchaRule.Never) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
const captchaProviderItems = this.getCaptchaProviderItems(application);
|
const captchaProviderItems = this.getCaptchaProviderItems(application);
|
||||||
@@ -1291,7 +1293,7 @@ class LoginPage extends React.Component {
|
|||||||
<div className="login-content" style={{margin: this.props.preview ?? this.parseOffset(application.formOffset)}}>
|
<div className="login-content" style={{margin: this.props.preview ?? this.parseOffset(application.formOffset)}}>
|
||||||
{Setting.inIframe() || Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCss}} />}
|
{Setting.inIframe() || Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCss}} />}
|
||||||
{Setting.inIframe() || !Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCssMobile}} />}
|
{Setting.inIframe() || !Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCssMobile}} />}
|
||||||
<div className="login-panel">
|
<div className={Setting.isDarkTheme(this.props.themeAlgorithm) ? "login-panel-dark" : "login-panel"}>
|
||||||
<div className="side-image" style={{display: application.formOffset !== 4 ? "none" : null}}>
|
<div className="side-image" style={{display: application.formOffset !== 4 ? "none" : null}}>
|
||||||
<div dangerouslySetInnerHTML={{__html: application.formSideHtml}} />
|
<div dangerouslySetInnerHTML={{__html: application.formSideHtml}} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -842,7 +842,7 @@ class SignupPage extends React.Component {
|
|||||||
<div className="login-content" style={{margin: this.props.preview ?? this.parseOffset(application.formOffset)}}>
|
<div className="login-content" style={{margin: this.props.preview ?? this.parseOffset(application.formOffset)}}>
|
||||||
{Setting.inIframe() || Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCss}} />}
|
{Setting.inIframe() || Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCss}} />}
|
||||||
{Setting.inIframe() || !Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCssMobile}} />}
|
{Setting.inIframe() || !Setting.isMobile() ? null : <div dangerouslySetInnerHTML={{__html: application.formCssMobile}} />}
|
||||||
<div className="login-panel" >
|
<div className={Setting.isDarkTheme(this.props.themeAlgorithm) ? "login-panel-dark" : "login-panel"}>
|
||||||
<div className="side-image" style={{display: application.formOffset !== 4 ? "none" : null}}>
|
<div className="side-image" style={{display: application.formOffset !== 4 ? "none" : null}}>
|
||||||
<div dangerouslySetInnerHTML={{__html: application.formSideHtml}} />
|
<div dangerouslySetInnerHTML={{__html: application.formSideHtml}} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import React, {useState} from "react";
|
import React, {Fragment, useState} from "react";
|
||||||
import i18next from "i18next";
|
import i18next from "i18next";
|
||||||
import {Button, Input} from "antd";
|
import {Button, Input} from "antd";
|
||||||
import * as AuthBackend from "../AuthBackend";
|
import * as AuthBackend from "../AuthBackend";
|
||||||
@@ -67,24 +67,32 @@ export function MfaAuthVerifyForm({formValues, authParams, mfaProps, application
|
|||||||
|
|
||||||
if (mfaType !== RecoveryMfaType) {
|
if (mfaType !== RecoveryMfaType) {
|
||||||
return (
|
return (
|
||||||
<div style={{width: 300, height: 350}}>
|
<div style={{width: 320, height: 350}}>
|
||||||
<div style={{marginBottom: 24, textAlign: "center", fontSize: "24px"}}>
|
<div style={{marginBottom: 24, textAlign: "center", fontSize: "24px"}}>
|
||||||
{i18next.t("mfa:Multi-factor authentication")}
|
{i18next.t("mfa:Multi-factor authentication")}
|
||||||
</div>
|
</div>
|
||||||
<div style={{marginBottom: 24}}>
|
|
||||||
{i18next.t("mfa:Multi-factor authentication description")}
|
|
||||||
</div>
|
|
||||||
{mfaType === SmsMfaType || mfaType === EmailMfaType ? (
|
{mfaType === SmsMfaType || mfaType === EmailMfaType ? (
|
||||||
|
<Fragment>
|
||||||
|
<div style={{marginBottom: 24}}>
|
||||||
|
{i18next.t("mfa:You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue")}
|
||||||
|
</div>
|
||||||
<MfaVerifySmsForm
|
<MfaVerifySmsForm
|
||||||
mfaProps={mfaProps}
|
mfaProps={mfaProps}
|
||||||
method={mfaAuth}
|
method={mfaAuth}
|
||||||
onFinish={verify}
|
onFinish={verify}
|
||||||
application={application}
|
application={application}
|
||||||
/>) : (
|
/>
|
||||||
|
</Fragment>
|
||||||
|
) : (
|
||||||
|
<Fragment>
|
||||||
|
<div style={{marginBottom: 24}}>
|
||||||
|
{i18next.t("mfa:You have enabled Multi-Factor Authentication, please enter the TOTP code")}
|
||||||
|
</div>
|
||||||
<MfaVerifyTotpForm
|
<MfaVerifyTotpForm
|
||||||
mfaProps={mfaProps}
|
mfaProps={mfaProps}
|
||||||
onFinish={verify}
|
onFinish={verify}
|
||||||
/>
|
/>
|
||||||
|
</Fragment>
|
||||||
)}
|
)}
|
||||||
<span style={{float: "right"}}>
|
<span style={{float: "right"}}>
|
||||||
{i18next.t("mfa:Have problems?")}
|
{i18next.t("mfa:Have problems?")}
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Máte problémy?",
|
"Have problems?": "Máte problémy?",
|
||||||
"Multi-factor authentication": "Vícefaktorové ověřování",
|
"Multi-factor authentication": "Vícefaktorové ověřování",
|
||||||
"Multi-factor authentication - Tooltip ": "Dvoufaktorové ověřování - Tooltip",
|
"Multi-factor authentication - Tooltip ": "Dvoufaktorové ověřování - Tooltip",
|
||||||
"Multi-factor authentication description": "Popis dvoufaktorového ověřování",
|
|
||||||
"Multi-factor methods": "Metody dvoufaktorového ověřování",
|
"Multi-factor methods": "Metody dvoufaktorového ověřování",
|
||||||
"Multi-factor recover": "Obnovení dvoufaktorového ověřování",
|
"Multi-factor recover": "Obnovení dvoufaktorového ověřování",
|
||||||
"Multi-factor recover description": "Popis obnovení dvoufaktorového ověřování",
|
"Multi-factor recover description": "Popis obnovení dvoufaktorového ověřování",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Ověření selhalo",
|
"Verification failed": "Ověření selhalo",
|
||||||
"Verify Code": "Ověřit kód",
|
"Verify Code": "Ověřit kód",
|
||||||
"Verify Password": "Ověřit heslo",
|
"Verify Password": "Ověřit heslo",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Váš email je",
|
"Your email is": "Váš email je",
|
||||||
"Your phone is": "Váš telefon je",
|
"Your phone is": "Váš telefon je",
|
||||||
"preferred": "preferované"
|
"preferred": "preferované"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Des problèmes ?",
|
"Have problems?": "Des problèmes ?",
|
||||||
"Multi-factor authentication": "Authentification multifacteur",
|
"Multi-factor authentication": "Authentification multifacteur",
|
||||||
"Multi-factor authentication - Tooltip ": "Authentification multifacteur - infobulle ",
|
"Multi-factor authentication - Tooltip ": "Authentification multifacteur - infobulle ",
|
||||||
"Multi-factor authentication description": "Description de l'authentification multifacteur",
|
|
||||||
"Multi-factor methods": "Méthodes d'authentification multifacteur",
|
"Multi-factor methods": "Méthodes d'authentification multifacteur",
|
||||||
"Multi-factor recover": "Restauration de l'authentification multifacteur",
|
"Multi-factor recover": "Restauration de l'authentification multifacteur",
|
||||||
"Multi-factor recover description": "Description de la restauration de l'authentification multifacteur",
|
"Multi-factor recover description": "Description de la restauration de l'authentification multifacteur",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Échec de la vérification",
|
"Verification failed": "Échec de la vérification",
|
||||||
"Verify Code": "Vérifier le code",
|
"Verify Code": "Vérifier le code",
|
||||||
"Verify Password": "Confirmez le mot de passe",
|
"Verify Password": "Confirmez le mot de passe",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Votre e-mail est",
|
"Your email is": "Votre e-mail est",
|
||||||
"Your phone is": "Votre téléphone est",
|
"Your phone is": "Votre téléphone est",
|
||||||
"preferred": "préféré"
|
"preferred": "préféré"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Tem problemas?",
|
"Have problems?": "Tem problemas?",
|
||||||
"Multi-factor authentication": "Autenticação de vários fatores",
|
"Multi-factor authentication": "Autenticação de vários fatores",
|
||||||
"Multi-factor authentication - Tooltip ": "Autenticação de múltiplos fatores - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Autenticação de múltiplos fatores - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Возникли проблемы?",
|
"Have problems?": "Возникли проблемы?",
|
||||||
"Multi-factor authentication": "Многофакторная аутентификация",
|
"Multi-factor authentication": "Многофакторная аутентификация",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Проверка не удалась",
|
"Verification failed": "Проверка не удалась",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Ваш email",
|
"Your email is": "Ваш email",
|
||||||
"Your phone is": "Ваш телефон",
|
"Your phone is": "Ваш телефон",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Máte problémy?",
|
"Have problems?": "Máte problémy?",
|
||||||
"Multi-factor authentication": "Viacfaktorová autentifikácia",
|
"Multi-factor authentication": "Viacfaktorová autentifikácia",
|
||||||
"Multi-factor authentication - Tooltip ": "Viacfaktorová autentifikácia - Nápoveda ",
|
"Multi-factor authentication - Tooltip ": "Viacfaktorová autentifikácia - Nápoveda ",
|
||||||
"Multi-factor authentication description": "Popis viacfaktorovej autentifikácie",
|
|
||||||
"Multi-factor methods": "Metódy viacfaktorovej autentifikácie",
|
"Multi-factor methods": "Metódy viacfaktorovej autentifikácie",
|
||||||
"Multi-factor recover": "Obnova viacfaktorovej autentifikácie",
|
"Multi-factor recover": "Obnova viacfaktorovej autentifikácie",
|
||||||
"Multi-factor recover description": "Popis obnovy viacfaktorovej autentifikácie",
|
"Multi-factor recover description": "Popis obnovy viacfaktorovej autentifikácie",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Overenie zlyhalo",
|
"Verification failed": "Overenie zlyhalo",
|
||||||
"Verify Code": "Overiť kód",
|
"Verify Code": "Overiť kód",
|
||||||
"Verify Password": "Overiť heslo",
|
"Verify Password": "Overiť heslo",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Váš email je",
|
"Your email is": "Váš email je",
|
||||||
"Your phone is": "Váš telefón je",
|
"Your phone is": "Váš telefón je",
|
||||||
"preferred": "preferované"
|
"preferred": "preferované"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Doğrulama başarısız",
|
"Verification failed": "Doğrulama başarısız",
|
||||||
"Verify Code": "Kodu doğrula",
|
"Verify Code": "Kodu doğrula",
|
||||||
"Verify Password": "Parolayı Doğrula",
|
"Verify Password": "Parolayı Doğrula",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "E-postanız",
|
"Your email is": "E-postanız",
|
||||||
"Your phone is": "Telefon numaranız",
|
"Your phone is": "Telefon numaranız",
|
||||||
"preferred": "tercih edilen"
|
"preferred": "tercih edilen"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Є проблеми?",
|
"Have problems?": "Є проблеми?",
|
||||||
"Multi-factor authentication": "Багатофакторна аутентифікація",
|
"Multi-factor authentication": "Багатофакторна аутентифікація",
|
||||||
"Multi-factor authentication - Tooltip ": "Багатофакторна автентифікація – підказка ",
|
"Multi-factor authentication - Tooltip ": "Багатофакторна автентифікація – підказка ",
|
||||||
"Multi-factor authentication description": "Опис багатофакторної автентифікації",
|
|
||||||
"Multi-factor methods": "Багатофакторні методи",
|
"Multi-factor methods": "Багатофакторні методи",
|
||||||
"Multi-factor recover": "Багатофакторне відновлення",
|
"Multi-factor recover": "Багатофакторне відновлення",
|
||||||
"Multi-factor recover description": "Опис багатофакторного відновлення",
|
"Multi-factor recover description": "Опис багатофакторного відновлення",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Не вдалося перевірити",
|
"Verification failed": "Не вдалося перевірити",
|
||||||
"Verify Code": "Підтвердити код",
|
"Verify Code": "Підтвердити код",
|
||||||
"Verify Password": "Підтвердіть пароль",
|
"Verify Password": "Підтвердіть пароль",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Ваша електронна адреса",
|
"Your email is": "Ваша електронна адреса",
|
||||||
"Your phone is": "Ваш телефон",
|
"Your phone is": "Ваш телефон",
|
||||||
"preferred": "бажаний"
|
"preferred": "бажаний"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "Have problems?",
|
"Have problems?": "Have problems?",
|
||||||
"Multi-factor authentication": "Multi-factor authentication",
|
"Multi-factor authentication": "Multi-factor authentication",
|
||||||
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "Multi-factor authentication - Tooltip ",
|
||||||
"Multi-factor authentication description": "Multi-factor authentication description",
|
|
||||||
"Multi-factor methods": "Multi-factor methods",
|
"Multi-factor methods": "Multi-factor methods",
|
||||||
"Multi-factor recover": "Multi-factor recover",
|
"Multi-factor recover": "Multi-factor recover",
|
||||||
"Multi-factor recover description": "Multi-factor recover description",
|
"Multi-factor recover description": "Multi-factor recover description",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "Verification failed",
|
"Verification failed": "Verification failed",
|
||||||
"Verify Code": "Verify Code",
|
"Verify Code": "Verify Code",
|
||||||
"Verify Password": "Verify Password",
|
"Verify Password": "Verify Password",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "You have enabled Multi-Factor Authentication, please enter the TOTP code",
|
||||||
"Your email is": "Your email is",
|
"Your email is": "Your email is",
|
||||||
"Your phone is": "Your phone is",
|
"Your phone is": "Your phone is",
|
||||||
"preferred": "preferred"
|
"preferred": "preferred"
|
||||||
|
|||||||
@@ -538,7 +538,6 @@
|
|||||||
"Have problems?": "遇到问题?",
|
"Have problems?": "遇到问题?",
|
||||||
"Multi-factor authentication": "多因素认证",
|
"Multi-factor authentication": "多因素认证",
|
||||||
"Multi-factor authentication - Tooltip ": "多因素认证 - Tooltip ",
|
"Multi-factor authentication - Tooltip ": "多因素认证 - Tooltip ",
|
||||||
"Multi-factor authentication description": "您已经启用多因素认证,请输入认证码",
|
|
||||||
"Multi-factor methods": "多因素认证方式",
|
"Multi-factor methods": "多因素认证方式",
|
||||||
"Multi-factor recover": "重置多因素认证",
|
"Multi-factor recover": "重置多因素认证",
|
||||||
"Multi-factor recover description": "如果您无法访问您的设备,输入您的多因素认证恢复代码来确认您的身份",
|
"Multi-factor recover description": "如果您无法访问您的设备,输入您的多因素认证恢复代码来确认您的身份",
|
||||||
@@ -563,6 +562,8 @@
|
|||||||
"Verification failed": "验证失败",
|
"Verification failed": "验证失败",
|
||||||
"Verify Code": "验证码",
|
"Verify Code": "验证码",
|
||||||
"Verify Password": "验证密码",
|
"Verify Password": "验证密码",
|
||||||
|
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "您已经启用多因素认证, 请点击 '发送验证码' 继续",
|
||||||
|
"You have enabled Multi-Factor Authentication, please enter the TOTP code": "您已经启用多因素认证,请输入TOTP认证码",
|
||||||
"Your email is": "你的电子邮件",
|
"Your email is": "你的电子邮件",
|
||||||
"Your phone is": "你的手机号",
|
"Your phone is": "你的手机号",
|
||||||
"preferred": "首选"
|
"preferred": "首选"
|
||||||
|
|||||||
@@ -104,6 +104,7 @@ class AccountTable extends React.Component {
|
|||||||
{name: "Is forbidden", label: i18next.t("user:Is forbidden")},
|
{name: "Is forbidden", label: i18next.t("user:Is forbidden")},
|
||||||
{name: "Is deleted", label: i18next.t("user:Is deleted")},
|
{name: "Is deleted", label: i18next.t("user:Is deleted")},
|
||||||
{name: "Need update password", label: i18next.t("user:Need update password")},
|
{name: "Need update password", label: i18next.t("user:Need update password")},
|
||||||
|
{name: "IP whitelist", label: i18next.t("general:IP whitelist")},
|
||||||
{name: "Multi-factor authentication", label: i18next.t("user:Multi-factor authentication")},
|
{name: "Multi-factor authentication", label: i18next.t("user:Multi-factor authentication")},
|
||||||
{name: "WebAuthn credentials", label: i18next.t("user:WebAuthn credentials")},
|
{name: "WebAuthn credentials", label: i18next.t("user:WebAuthn credentials")},
|
||||||
{name: "Managed accounts", label: i18next.t("user:Managed accounts")},
|
{name: "Managed accounts", label: i18next.t("user:Managed accounts")},
|
||||||
|
|||||||
Reference in New Issue
Block a user