PluginProbe
ActivityPub / 7.8.2
ActivityPub v7.8.2
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | includes/rest/admin/class-actions-controller.php +0 -3 8.2.07.8.2 View file →
@@ -54,9 +54,8 @@
54 54 array(
55 55 'methods' => \WP_REST_Server::DELETABLE,
56 56 'callback' => array( $this, 'unfollow_actor' ),
57 57 'permission_callback' => array( $this, 'check_permission' ),
58 - 'show_in_index' => false,
59 58 ),
60 59 )
61 60 );
62 61
@@ -76,9 +75,8 @@
76 75 array(
77 76 'methods' => \WP_REST_Server::CREATABLE,
78 77 'callback' => array( $this, 'block_actor' ),
79 78 'permission_callback' => array( $this, 'check_permission' ),
80 - 'show_in_index' => false,
81 79 'args' => array(
82 80 'site_wide' => array(
83 81 'description' => 'Whether to block site-wide (admin only).',
84 82 'type' => 'boolean',
@@ -105,9 +103,8 @@
105 103 array(
106 104 'methods' => \WP_REST_Server::CREATABLE,
107 105 'callback' => array( $this, 'follow_actor' ),
108 106 'permission_callback' => array( $this, 'check_permission' ),
109 - 'show_in_index' => false,
110 107 ),
111 108 )
112 109 );
113 110 }