Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sane defaults to address: Deleted users keep the roles they had #67

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions news/67.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Change security defaults to use UUID based login IDs and email-based login-names.
See https://github.com/plone/Products.CMFPlone/issues/3937 for details.
[jensens]
4 changes: 2 additions & 2 deletions src/plone/base/interfaces/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ class ISecuritySchema(Interface):
"saving this form will fail. You can use the "
"@@migrate-to-emaillogin page to show the duplicates."
),
default=False,
default=True,
required=False,
)

Expand All @@ -1058,7 +1058,7 @@ class ISecuritySchema(Interface):
"login name, or when using the email address as login name we "
"generate a user id based on the fullname."
),
default=False,
default=True,
required=False,
)

Expand Down