Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
selexpert
backend
Merge requests
!123
lowercase email during import and expert update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
lowercase email during import and expert update
feature/lowercase-email
into
dev
Overview
0
Commits
2
Pipelines
2
Changes
7
Merged
Nicolas Aycirieix
requested to merge
feature/lowercase-email
into
dev
1 month ago
Overview
0
Commits
2
Pipelines
2
Changes
7
Expand
0
0
Merge request reports
Compare
dev
version 1
0ad1f3de
1 month ago
dev (base)
and
latest version
latest version
b6f854d5
2 commits,
1 month ago
version 1
0ad1f3de
1 commit,
1 month ago
7 files
+
21
−
9
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
src/main/java/fr/gouv/beta/selexpert/dto/ImportFileHeaderAppealCourt.java
+
4
−
1
Options
@@ -31,7 +31,10 @@ public enum ImportFileHeaderAppealCourt implements ImportFileHeader {
VILLE
(
"ville"
,
null
),
CODE_POSTAL
(
"code_postal"
,
null
),
DEPARTEMENT
(
"departement"
,
null
),
COURRIEL
(
"courriel"
,
null
),
COURRIEL
(
"courriel"
,
(
String
content
)
->
content
.
matches
(
"(^$|[a-zA-Z0-9._%+\\-']+@[a-zA-Z0-9.\\-àèéÀÈÉ]+\\.[a-zA-Z]{2,12})"
)),
FAX
(
"fax"
,
null
),
MOBILE
(
"mobile"
,
null
),
FIXE
(
"fixe"
,
null
),