plone.restapi
plone.restapi copied to clipboard
RESTful API for Plone.
If an `id` is specified while creating content via the [FolderPost](https://github.com/plone/plone.restapi/blob/master/src/plone/restapi/services/content/add.py) endpoint, it is used without validating that it meets the criteria for a valid id. For example, it's possible...
This PR makes it possible to use a different content serializer, based on the ``layout`` property of context (the default view, selected from the Display menu). I don't have a...
This enables further registration of named adapters for generic transformers
I'm not sure why I got this error, I didn't look at the request, but it seems there should be an extra check for the `None` return type from `...
plone.restapi currently returns the "raw" value for both effective_date and creation_date. Say you create a new object it will return: effective_date: None, creation_date: When a frontend client now queries the...
One use case I have requires overriding the JsonSchema for all fields, returning an additional property. Currently, the only possible way to do it is patching the **get_schema** method in...
If you are using plone.restapi for migrations then it is necessary to preserve the original UID (because they are used for references or links within rich text. The best solution...