Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roque
slapos.core
Commits
d46dce89
Commit
d46dce89
authored
Apr 06, 2023
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Plain Diff
subscription_request: search emails with exact match
See merge request
nexedi/slapos.core!513
parents
6f54cc79
4cbad19d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
master/bt5/slapos_subscription_request/ExtensionTemplateItem/portal_components/extension.erp5.SlapOSSubscriptionRequest.py
...al_components/extension.erp5.SlapOSSubscriptionRequest.py
+2
-2
No files found.
master/bt5/slapos_subscription_request/ExtensionTemplateItem/portal_components/extension.erp5.SlapOSSubscriptionRequest.py
View file @
d46dce89
...
...
@@ -49,7 +49,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
erp5_login_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
portal_type
=
"ERP5 Login"
,
reference
=
email
,
reference
=
{
'query'
:
email
,
'key'
:
'ExactMatch'
}
,
validation_state
=
"validated"
)
if
len
(
erp5_login_list
):
...
...
@@ -58,7 +58,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
# Already has login with this.
person_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
portal_type
=
"Person"
,
default_email_text
=
email
,
default_email_text
=
{
'query'
:
email
,
'key'
:
'ExactMatch'
}
,
validation_state
=
"validated"
)
if
len
(
person_list
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment