Merge pull request #16439 from woocommerce/fix/16432

Switch CLI tools command over to v2 API
This commit is contained in:
Claudiu Lodromanean 2017-08-14 10:04:02 -07:00 committed by GitHub
commit 1f2891cfd3
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ class WC_CLI_Tool_Command {
public static function register_commands() { public static function register_commands() {
global $wp_rest_server; global $wp_rest_server;
$request = new WP_REST_Request( 'OPTIONS', '/wc/v1/system_status/tools' ); $request = new WP_REST_Request( 'OPTIONS', '/wc/v2/system_status/tools' );
$response = $wp_rest_server->dispatch( $request ); $response = $wp_rest_server->dispatch( $request );
$response_data = $response->get_data(); $response_data = $response->get_data();
if ( empty( $response_data ) ) { if ( empty( $response_data ) ) {
@ -42,7 +42,7 @@ class WC_CLI_Tool_Command {
'optional' => false, 'optional' => false,
); );
$method = 'update_item'; $method = 'update_item';
$route = '/wc/v1/system_status/tools/(?P<id>[\w-]+)'; $route = '/wc/v2/system_status/tools/(?P<id>[\w-]+)';
} elseif ( 'list' === $command ) { } elseif ( 'list' === $command ) {
$synopsis[] = array( $synopsis[] = array(
'name' => 'fields', 'name' => 'fields',
@ -75,7 +75,7 @@ class WC_CLI_Tool_Command {
), ),
); );
$method = 'list_items'; $method = 'list_items';
$route = '/wc/v1/system_status/tools'; $route = '/wc/v2/system_status/tools';
} }
$before_invoke = null; $before_invoke = null;