Make WordPress Core


Ignore:
Timestamp:
06/28/2023 03:33:23 AM (17 months ago)
Author:
isabel_brison
Message:

REST API: add revisions endpoint for global styles.

Adds an endpoint that returns revisions to the global styles custom post.

Props ramonopoly, peterwilsoncc, spacedmonkey, mukesh27, timothyblynjacobs.
Fixes #58524.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/qunit/fixtures/wp-api-generated.js

    r56052 r56082  
    96199619            ]
    96209620        },
     9621        "/wp/v2/global-styles/(?P<parent>[\\d]+)/revisions": {
     9622            "namespace": "wp/v2",
     9623            "methods": [
     9624                "GET"
     9625            ],
     9626            "endpoints": [
     9627                {
     9628                    "methods": [
     9629                        "GET"
     9630                    ],
     9631                    "args": {
     9632                        "parent": {
     9633                            "description": "The ID for the parent of the revision.",
     9634                            "type": "integer",
     9635                            "required": false
     9636                        },
     9637                        "context": {
     9638                            "description": "Scope under which the request is made; determines fields present in response.",
     9639                            "type": "string",
     9640                            "enum": [
     9641                                "view",
     9642                                "embed",
     9643                                "edit"
     9644                            ],
     9645                            "default": "view",
     9646                            "required": false
     9647                        },
     9648                        "page": {
     9649                            "description": "Current page of the collection.",
     9650                            "type": "integer",
     9651                            "default": 1,
     9652                            "minimum": 1,
     9653                            "required": false
     9654                        },
     9655                        "per_page": {
     9656                            "description": "Maximum number of items to be returned in result set.",
     9657                            "type": "integer",
     9658                            "minimum": 1,
     9659                            "maximum": 100,
     9660                            "required": false
     9661                        },
     9662                        "offset": {
     9663                            "description": "Offset the result set by a specific number of items.",
     9664                            "type": "integer",
     9665                            "required": false
     9666                        }
     9667                    }
     9668                }
     9669            ]
     9670        },
    96219671        "/wp/v2/global-styles/themes/(?P<stylesheet>[\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)/variations": {
    96229672            "namespace": "wp/v2",
Note: See TracChangeset for help on using the changeset viewer.