Changeset 51463 for trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php
- Timestamp:
- 07/19/2021 09:13:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php
r51000 r51463 492 492 return new WP_Error( 493 493 'rest_cannot_introspect_app_password_for_non_authenticated_user', 494 __( 'The authenticated Application Password can only be introspected for the current user.' ),494 __( 'The authenticated application password can only be introspected for the current user.' ), 495 495 array( 'status' => rest_authorization_required_code() ) 496 496 ); … … 520 520 return new WP_Error( 521 521 'rest_no_authenticated_app_password', 522 __( 'Cannot introspect Application Password.' ),522 __( 'Cannot introspect application password.' ), 523 523 array( 'status' => 404 ) 524 524 ); … … 789 789 ), 790 790 'app_id' => array( 791 'description' => __( 'A uuidprovided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.' ),791 'description' => __( 'A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.' ), 792 792 'type' => 'string', 793 793 'format' => 'uuid',
Note: See TracChangeset
for help on using the changeset viewer.