Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
Factory
Resin
Client
Commits
53b3f233
Commit
53b3f233
authored
11 months ago
by
Etienne LOUPIAS
Browse files
Options
Downloads
Patches
Plain Diff
fix(user): add member email lower case
parent
609a2c54
No related branches found
No related tags found
2 merge requests
!805
V3.0.1
,
!794
Resolve "[Compte utilisateur] - Supprimer la sensibilité à la casse dans les adresses mail des comptes"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
+1
-1
1 addition, 1 deletion
...-add-member-modal/structure-add-member-modal.component.ts
with
1 addition
and
1 deletion
src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
+
1
−
1
View file @
53b3f233
...
...
@@ -47,7 +47,7 @@ export class StructureAddMemberModalComponent {
return
;
}
const
user
=
new
TempUser
();
user
.
email
=
this
.
email
;
user
.
email
=
this
.
email
.
toLowerCase
()
;
try
{
const
res
=
await
lastValueFrom
(
this
.
structureService
.
addOwnerToStructure
(
user
,
this
.
structure
.
structure
.
_id
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment