Plugin Directory

Changeset 2101843


Ignore:
Timestamp:
06/06/2019 08:40:03 PM (7 years ago)
Author:
dancameron
Message:

Deploy version 6.0.7

Location:
help-scout
Files:
59 added
4 edited

Legend:

Unmodified
Added
Removed
  • help-scout/trunk/HelpScout_Desk.php

    r2100503 r2101843  
    3535     * Current version. Should match help-scout-desk.php plugin version.
    3636     */
    37     const HSD_VERSION = '6.0.5';
     37    const HSD_VERSION = '6.0.7';
    3838    /**
    3939     * DB Version
  • help-scout/trunk/controllers/HelpScout_API.php

    r2083837 r2101843  
    224224
    225225    public static function get_full_conversations_by_user( $customer_id = 0, $refresh = false, $mailbox_id = 0, $page = 1, $status = 'all' ) {
    226 
    227226        if ( ! $customer_id ) {
    228227            $customer_ids = self::find_customer_ids( $customer_id, $refresh );
     
    238237        foreach ( $customer_ids as $customer_id ) {
    239238
    240             $query = sprintf( '?query=(customerIds: %2$s)&mailboxid=%1$s&status=%4$s&sortField=modifiedAt&sortOrder=desc&page=%3$s', $mailbox_id, $customer_id, $page, $status );
    241 
     239            $query = sprintf( '?query=(customerIds:%2$s)&mailbox=%1$s&status=%4$s&sortField=modifiedAt&sortOrder=desc&page=%3$s', $mailbox_id, $customer_id, $page, $status );
    242240            $response = self::api_request( 'conversations', $query, $refresh );
    243241            $response = json_decode( $response );
     
    492490            $mailbox_id = self::$mailbox;
    493491        }
    494         $endpoint = sprintf( 'conversations?query=(customerIds: %2$s)&mailboxid=%1$s&status=all&sortField=modifiedAt&sortOrder=desc&page=1', $mailbox_id, $customer_id );
     492        $endpoint = sprintf( 'conversations?query=(customerIds:%2$s)&mailbox=%1$s&status=all&sortField=modifiedAt&sortOrder=desc&page=1', $mailbox_id, $customer_id );
    495493        delete_transient( self::get_cache_key( $endpoint ) );
    496494    }
  • help-scout/trunk/help-scout.php

    r2100503 r2101843  
    33/**
    44 * @package Help_Scout_Desk
    5  * @version 6.0.5
     5 * @version 6.0.7
    66 */
    77
     
    1111 * Description: Allows for Help Scout conversations to be easily created on your site, with full beacon support. If you're wanting to display conversations on your site checkout <a href="https://wphelpscout.com/?utm_medium=link&utm_campaign=hsfree&utm_source=wordpress.org">Help Scout Desk</a>.
    1212 * Author: Sprout Apps
    13  * Version: 6.0.5
     13 * Version: 6.0.7
    1414 * Author URI: https://wphelpscout.com
    1515 * Text Domain: help-scout-desk
  • help-scout/trunk/readme.txt

    r2100503 r2101843  
    44Requires at least: 4.5
    55Tested up to: 5.2
    6 Stable tag: 6.0.5
    7 Release 6.0.5
     6Stable tag: 6.0.7
     7Release 6.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    32321. Upload plugin folder to your `/wp-content/plugins/` directory
    33331. Activate the plugin through the **Plugins** menu in WordPress
    34 1. Open the settings for the plugin, then add your API key and Mailbox ID.
     341. Open the settings for the plugin, then add your Application ID, App Secret, and Mailbox ID.
    35351. Add `[hsd_form]` shortcode to a page or post to capture contact submissions OR use the Help Scout beacon.
    3636
Note: See TracChangeset for help on using the changeset viewer.