BP_REST_Messages_Actions_Endpoint::register_routes()
Register the component routes.
Description
Source
File: bp-messages/classes/class-bp-rest-messages-actions-endpoint.php
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/action/(?P<id>[\d]+)',
array(
'args' => array(
'id' => array(
'description' => __( 'ID of the Messages Thread.', 'buddyboss' ),
'type' => 'integer',
'required' => true,
),
'action' => array(
'description' => __( 'Action name to perform on the message thread.', 'buddyboss' ),
'type' => 'string',
'required' => true,
'enum' => array(
'delete_messages',
'hide_thread',
'unread',
),
'sanitize_callback' => 'sanitize_key',
'validate_callback' => 'rest_validate_request_arg',
),
'value' => array(
'description' => __( 'Value for the action on message thread.', 'buddyboss' ),
'type' => 'boolean',
'sanitize_callback' => 'rest_sanitize_boolean',
'validate_callback' => 'rest_validate_request_arg',
),
),
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => array( $this, 'action_items' ),
'permission_callback' => array( $this, 'action_items_permissions_check' ),
'args' => $this->get_collection_params(),
),
'schema' => array( $this->message_endppoint, 'get_item_schema' ),
)
);
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.