- Timestamp:
- 11/15/2016 06:15:30 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r39239 r39250 90 90 'description' => __( 'Required to be true, as resource does not support trashing.' ), 91 91 ), 92 'reassign' => array(), 92 'reassign' => array( 93 'type' => 'integer', 94 'description' => __( 'Reassign the deleted user\'s posts and links to this user ID.' ), 95 ), 93 96 ), 94 97 ), … … 101 104 'callback' => array( $this, 'get_current_item' ), 102 105 'args' => array( 103 'context' => array(),106 'context' => $this->get_context_param( array( 'default' => 'view' ) ), 104 107 ), 105 108 ), … … 120 123 'description' => __( 'Required to be true, as resource does not support trashing.' ), 121 124 ), 122 'reassign' => array(), 125 'reassign' => array( 126 'type' => 'integer', 127 'description' => __( 'Reassign the deleted user\'s posts and links to this user ID.' ), 128 ), 123 129 ), 124 130 ),
Note: See TracChangeset
for help on using the changeset viewer.