improved the WP_Error's ids in customers api
This commit is contained in:
parent
ee907b0c20
commit
41a5b147e9
|
@ -326,7 +326,7 @@ class WC_API_Customers extends WC_API_Resource {
|
||||||
|
|
||||||
// Checks with the email is missing.
|
// Checks with the email is missing.
|
||||||
if ( ! isset( $data['email'] ) ) {
|
if ( ! isset( $data['email'] ) ) {
|
||||||
return new WP_Error( 'woocommerce_api_user_cannot_create_customer', sprintf( __( 'Missing parameter %s' ), 'email' ), array( 'status' => 400 ) );
|
return new WP_Error( 'woocommerce_api_missing_customer_email', sprintf( __( 'Missing parameter %s' ), 'email' ), array( 'status' => 400 ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sets the username.
|
// Sets the username.
|
||||||
|
@ -344,7 +344,7 @@ class WC_API_Customers extends WC_API_Resource {
|
||||||
|
|
||||||
// Checks for an error in the customer creation.
|
// Checks for an error in the customer creation.
|
||||||
if ( is_wp_error( $id ) ) {
|
if ( is_wp_error( $id ) ) {
|
||||||
return new WP_Error( 'woocommerce_api_user_cannot_create_customer', $id->get_error_message(), array( 'status' => 400 ) );
|
return new WP_Error( 'woocommerce_api_cannot_create_customer', $id->get_error_message(), array( 'status' => 400 ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Added customer data.
|
// Added customer data.
|
||||||
|
|
Loading…
Reference in New Issue