fix(core): Do not validate email when LDAP is enabled (#13605)

This commit is contained in:
Ricardo Espinoza
2025-03-03 19:15:52 +01:00
committed by GitHub
parent 24681f843c
commit 17738c5096
16 changed files with 187 additions and 83 deletions

View File

@@ -69,7 +69,7 @@ Cypress.Commands.add('signin', ({ email, password }) => {
.request({
method: 'POST',
url: `${BACKEND_BASE_URL}/rest/login`,
body: { email, password },
body: { emailOrLdapLoginId: email, password },
failOnStatusCode: false,
})
.then((response) => {