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
Arnaud Véron
slapos.core
Commits
4cbad19d
Commit
4cbad19d
authored
Apr 07, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subscription_request: search emails with exact match
parent
6f54cc79
Changes
1
Hide 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 @
4cbad19d
...
@@ -49,7 +49,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
...
@@ -49,7 +49,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
erp5_login_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
erp5_login_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
portal_type
=
"ERP5 Login"
,
portal_type
=
"ERP5 Login"
,
reference
=
email
,
reference
=
{
'query'
:
email
,
'key'
:
'ExactMatch'
}
,
validation_state
=
"validated"
)
validation_state
=
"validated"
)
if
len
(
erp5_login_list
):
if
len
(
erp5_login_list
):
...
@@ -58,7 +58,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
...
@@ -58,7 +58,7 @@ def SubscriptionRequest_searchExistingUserByEmail(self, email, REQUEST=None):
# Already has login with this.
# Already has login with this.
person_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
person_list
=
portal
.
portal_catalog
.
unrestrictedSearchResults
(
portal_type
=
"Person"
,
portal_type
=
"Person"
,
default_email_text
=
email
,
default_email_text
=
{
'query'
:
email
,
'key'
:
'ExactMatch'
}
,
validation_state
=
"validated"
)
validation_state
=
"validated"
)
if
len
(
person_list
):
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