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

The "Use UUID as user ID" is not being observed in the POST @user endpoint. #586

Closed
sneridagh opened this issue Aug 23, 2018 · 1 comment · Fixed by #587
Closed

The "Use UUID as user ID" is not being observed in the POST @user endpoint. #586

sneridagh opened this issue Aug 23, 2018 · 1 comment · Fixed by #587

Comments

@sneridagh
Copy link
Member

So all the users are created not using an UUID if the setting (from Plone's security control panel) is enabled.

@sneridagh
Copy link
Member Author

The expected should be:

    {
        "@id": "http://localhost:8080/Plone/@users/d6fa58bc6d8e4e0682987887f5ad4852",
        "description": "",
        "email": "[email protected]",
        "fullname": "Demo User",
        "home_page": "",
        "id": "d6fa58bc6d8e4e0682987887f5ad4852",
        "location": "",
        "roles": [
            "Member",
            "Contributor",
            "Reviewer",
            "Editor",
            "Reader"
        ],
        "username": "[email protected]"
    },

instead it is:

    {
        "@id": "http://localhost:8080/Plone/@users/[email protected]",
        "description": "",
        "email": "[email protected]",
        "fullname": "Demo User",
        "home_page": "",
        "id": "[email protected]",
        "location": "",
        "roles": [
            "Member",
            "Contributor",
            "Reviewer",
            "Editor",
            "Reader"
        ],
        "username": "[email protected]"
    },

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant