Plugin Directory

Changeset 3460981


Ignore:
Timestamp:
02/13/2026 06:28:52 PM (6 weeks ago)
Author:
tonnguyen86
Message:

Deploy version 1.0.4

Location:
bubblav-chat/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • bubblav-chat/trunk/bubblav-chat.php

    r3455597 r3460981  
    44 * Plugin URI: https://www.bubblav.com/integrations/wordpress
    55 * Description: AI chatbot and AI assistant for customer support. One-click installation, no coding required. Provide instant 24/7 support with an AI chatbot that learns from your website content. Perfect for WooCommerce stores.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Requires at least: 6.0
    88 * Requires PHP: 7.4
  • bubblav-chat/trunk/includes/class-bubblav-admin.php

    r3454919 r3460981  
    312312        $hosts[] = 'www.bubblav.com';
    313313        $hosts[] = 'bubblav.com';
     314        $hosts[] = 'test-app2.nport.link';
    314315        return $hosts;
    315316    }
     
    411412            update_option( 'bubblav_auth_token', $this->encrypt_api_key( $auth_token ) );
    412413
     414            // Store api_token for REST API authentication (unencrypted for database lookup).
     415            update_option( 'bubblav_api_token', $auth_token );
     416
    413417            add_settings_error(
    414418                'bubblav_messages',
  • bubblav-chat/trunk/includes/class-bubblav-core.php

    r3454919 r3460981  
    3838
    3939    /**
     40     * REST API instance
     41     *
     42     * @var Bubblav_REST_API|null
     43     */
     44    private $rest_api = null;
     45
     46    /**
    4047     * Initialize the plugin
    4148     *
     
    5663     */
    5764    private function init_components() {
    58         // Always initialize admin and widget.
    59         $this->admin  = new Bubblav_Admin();
    60         $this->widget = new Bubblav_Widget();
     65        // Always initialize admin, widget, and REST API.
     66        $this->admin    = new Bubblav_Admin();
     67        $this->widget   = new Bubblav_Widget();
     68        $this->rest_api = new Bubblav_REST_API();
     69
     70        // Initialize REST API routes.
     71        $this->rest_api->init();
    6172
    6273        // Check for WooCommerce.
Note: See TracChangeset for help on using the changeset viewer.