You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing Plone6 with plone.api-2.0.0b1, with site set as "Use email address as login name" and "Use UUID user ids".
api.user.create(email='[email protected]', password='password', properties={'fullname':'fullname'})
The new user will get the email as the userid, it should create a unique UUID as userid.
The text was updated successfully, but these errors were encountered:
so , i understand the probem and i also think that we can resolve this using :
user_id = str(uuid.uuid4())
but when i contribute why alsways it make my contribution close . i also sign the plone contributing agreement . so help me as a new controbutor on plone how i start.
@Ankuristic There is a setting "Use UUID user ids". A UUID should only be set as the user id if this setting is turned on; otherwise we have to keep the user id that was specified by the user.
While testing Plone6 with plone.api-2.0.0b1, with site set as "Use email address as login name" and "Use UUID user ids".
api.user.create(email='[email protected]', password='password', properties={'fullname':'fullname'})
The new user will get the email as the userid, it should create a unique UUID as userid.
The text was updated successfully, but these errors were encountered: