plone / guillotina

Python AsyncIO data API to manage billions of resources
https://guillotina.readthedocs.io/en/latest/
Other
187 stars 50 forks source link

GET /groups/ lacks group title #1155

Open ksuess opened 2 years ago

ksuess commented 2 years ago

POST /groups

{
    "@type": "Group",
    "id": "todo_viewer",
    "title": "TODO Viewer"
}

GET /groups response:


        {
            "@id": "http://localhost:8072/db/todo/groups/todo_viewer",
            "@name": "todo_viewer",
            "@type": "Group",
            "@uid": "c5a|ca1|eabac2c393a44ce089c5b5485813040f",
            "groupname": null,
            "id": "todo_viewer",
            "title": null,
            "roles": [],
            "users": {
                "items": [],
                "items_total": 0
            }
        }

The gmi display of title in groups folder is correct.