Add arguments declaration for install REST API endpoint.
This commit is contained in:
parent
cdb611e924
commit
b6be0b31f8
|
@ -51,6 +51,12 @@ class WC_REST_WCCOM_Site_Installer_Controller extends WC_REST_Controller {
|
||||||
'methods' => WP_REST_Server::CREATABLE,
|
'methods' => WP_REST_Server::CREATABLE,
|
||||||
'callback' => array( $this, 'install' ),
|
'callback' => array( $this, 'install' ),
|
||||||
'permission_callback' => array( $this, 'check_permission' ),
|
'permission_callback' => array( $this, 'check_permission' ),
|
||||||
|
'args' => array(
|
||||||
|
'products' => array(
|
||||||
|
'required' => true,
|
||||||
|
'type' => 'array',
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'methods' => WP_REST_Server::DELETABLE,
|
'methods' => WP_REST_Server::DELETABLE,
|
||||||
|
|
Loading…
Reference in New Issue