Plugin Directory

Changeset 2545894


Ignore:
Timestamp:
06/10/2021 10:36:27 PM (5 years ago)
Author:
quentn
Message:

Slash at start of namespace of rest API route is removed

Location:
quentn-wp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quentn-wp/trunk/includes/class-quentn-wp-rest-api-controller.php

    r2398796 r2545894  
    8080        add_action( 'rest_api_init', array( $this, 'register_page_routes' ) );
    8181
    82         $this->namespace = '/quentn/api/v1';
     82        $this->namespace = 'quentn/api/v1';
    8383        $this->create_user = '/users';
    8484        $this->grant_access = '/pages/grant-access';
  • quentn-wp/trunk/includes/class-quentn-wp.php

    r2483655 r2545894  
    7575            $this->version = QUENTN_WP_VERSION;
    7676        } else {
    77             $this->version = '1.1.5';
     77            $this->version = '1.1.6';
    7878        }
    7979        $this->plugin_name = 'quentn-wp';
  • quentn-wp/trunk/quentn-wp.php

    r2483655 r2545894  
    1717 * Plugin URI:        https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden
    1818 * Description:       This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn.
    19  * Version:           1.1.5
     19 * Version:           1.1.6
    2020 * Author:            Quentn.com GmbH
    2121 * Author URI:        https://quentn.com/
     
    3535define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' );
    3636define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' );
    37 define( 'QUENTN_WP_VERSION', '1.1.5' );
     37define( 'QUENTN_WP_VERSION', '1.1.6' );
    3838
    3939/**
  • quentn-wp/trunk/readme.txt

    r2483655 r2545894  
    33Tags: Quentn, countdown, page restriction, email, elementor integration, email marketing tool, integration, email automation, marketing automation
    44Requires at least: 4.6.0
    5 Tested up to: 5.6
    6 Stable tag: 1.1.5
     5Tested up to: 5.7
     6Stable tag: 1.1.6
    77Requires PHP: 5.6.0
    88License: GPLv2 or later
     
    6666
    6767== Changelog ==
     68= 1.1.6 =
     69* Slash at start of the namespace of rest API route is removed.
     70
    6871= 1.1.5 =
    6972* Improve the method of how cookie value is fetched to check page access permission.
     
    122125== Upgrade Notice ==
    123126
     127= 1.1.6 =
     128Thanks for using Quentn Plugin! Please update the plugin to improve the namespace of the rest API routes.
     129
    124130= 1.1.5 =
    125131Thanks for using Quentn Plugin! Please update the plugin to improve handling of page access permission.
Note: See TracChangeset for help on using the changeset viewer.