PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.75
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.75
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
← All changes | public/includes/api-loader.php +6 -0 11.1.2111.3.75 View file →
@@ -1,8 +1,12 @@
1 1 <?php
2 2
3 3 namespace Leadin;
4 4
5 +if ( ! defined( 'ABSPATH' ) ) exit;
6 +
7 +use Leadin\admin\api\WP_Mappings_Api_Controller;
8 +use Leadin\api\Access_Token_Api_Controller;
5 9 use Leadin\api\Healthcheck_Api_Controller;
6 10
7 11 use Leadin\admin\api\Internal_Tracking_Api_Controller;
8 12 use Leadin\admin\api\Hublet_Api_Controller;
@@ -18,10 +22,12 @@
18 22 * Register api endpoints.
19 23 */
20 24 function leadin_register_routes() {
21 25 new Healthcheck_Api_Controller();
26 + new Access_Token_Api_Controller();
22 27 // Admin routes.
23 28 new Internal_Tracking_Api_Controller();
24 29 new Hublet_Api_Controller();
25 30 new User_Meta_Api_Controller();
26 31 new Portal_Api_Controller();
32 + new WP_Mappings_Api_Controller();
27 33 }