Dont match Email Nami Field
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
philipp lang 2024-07-03 11:01:08 +02:00
parent 9c93b13032
commit 99a28f44dd
2 changed files with 5 additions and 1 deletions

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
# Letzte Änderungen
### 1.10.3
- Anmeldeformulare: Ist NaMi-Feld "E-Mail" ausgewählt bei Formular-Feldern, muss die E-Mail-Adresse nun nicht mehr auf das Mitglied matchen. Dies ist nur noch bei Formular-Feldern mit NaMi-Feldern "Vorname", "Nachname" und "Geburtsdatum" der Fall.

View File

@ -64,7 +64,6 @@ enum NamiType: string
static::FIRSTNAME => $query->where('firstname', $value),
static::LASTNAME => $query->where('lastname', $value),
static::BIRTHDAY => $query->where('birthday', $value),
static::EMAIL => $query->where('email', $value),
default => $query,
};
}